When single threaded Node.js becomes a trouble

As you know (as it is posted a dozen times a day), Javascript is a single-threaded language.
Thus, we will have a single thread serving all of our requests in our Node.js server unless we specifically play around this.
This can cause some troubles that yo… Read more

Similar