Node.js

Link of download download Node.js official page

-Why do we useNode.js?

We use Node because it provides a server-side execution environment that compiles and runs javascript at incredible speeds.

-How doesNode.js work?

How it works internally is quite interesting. In contrast to the traditional web service techniques where each connection (request) generates a new subprocess, returning the system RAM and finally to the amount of available RAM, Node.js operates in a single thread, does not use the blocking of calls of I / O, which allows it to admit tens of thousands of simultaneous connections (held in the case of loop).

Necessary components to take advantage of Node.js