There are some obvious optimizations that you should always consider before introducing new code. For example, in Node.js, it is extremely important that you do not flood the event loop or block the call stack. So ask yourself: Will the code I am thinking about block the call stack?
P
121
Programming
Notes, ideas and advises related to programming collected from my readings for blog posts, articles and books