19 things I learnt reading the Node.js docs
I’d like to think I know Node pretty well. I haven’t written a web site that doesn’t use it for about 3 years now. But I’ve never actually…
Read more »
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