AWAishwarya WakkarMar 3, 2017
Why is Node.js single threaded?
In PHP (or Java/ASP.NET/Ruby) based webservers every client request is instantiated on a new thread. But in Node.js all the clients run on the same thread (they can even share the same variables!) I understand that I/O operations are event based so t...
TMGSTiaan and 4 more commented