Production Logging in Node.js
1. The Anatomy of the Problem: console.log is "Blocking"
In the Node.js world, the Event Loop is the heart of your application. The golden rule is: Never block the main thread.
The shocker for many de
aprilio.hashnode.dev4 min read