Home > Article > Web Front-end > Advantages and Disadvantages of Node
Advantages:
1. Because Node is event-driven and non-blocking, it is very suitable for handling concurrent requests, so compared to proxy servers built on Node Servers implemented in other technologies (such as Ruby) perform much better.
2. The client code that interacts with the Node proxy server is written in the javascript language, so both the client and the server are written in the same language, which is a very beautiful thing.
Disadvantages:
1. Node is a relatively new open source project, so it is not stable and it is always changing.
2. Lack of enough third-party library support. It looks like what Ruby/Rails looked like back then (third-party libraries are now abundant, so this shortcoming can be said to not exist).
The above is the detailed content of Advantages and Disadvantages of Node. For more information, please follow other related articles on the PHP Chinese website!