One of the disadvantage of NodeJs is single threading. This causes the server to be unresponsive when for example you refresh the site rapidly multiple times.
I have been looking at a plugin for Nodejs will detect there are too many connections and return an error or refuse further connections from that connection.
I have found https://github.com/lloyd/node-toobusy, however, after loading the plugin, i'm running into issues where the assets of the sites are not getting loaded everytime.
Is there any other Nodejs modules that will solve the Too many connection issues in NodeJs?