Why is Node.js scalable?
The javascript that node runs is single threaded, but a lot of the things you call in node – such as network or file io – run in background threads. See this post for a basic overview: Node is not single threaded If you need the gritty details, you should look into libuv which is the … Read more