Best of Computing — September 2022
- 1
- 2
gitconnected·4y
7 Best Tools for Monitoring Node.js Servers.
There are several tools available for monitoring servers, but few are designed specifically for Node.js. In this post, we will discover the 7 best of them. PM2 PM2 is a potent instrument to run Node applications, but it is also very good at maintaining and monitoring standalone applications in production servers.
- 3
Honeybadger·4y
Multithreading in JavaScript with Web Workers
Single-threaded JavaScript VM is fundamentally designed to spawn a single thread, which means that it cannot read and execute multiple instructions simultaneously. When we see a function execution hindering the following function from executing for a few seconds, wait because a singlethread is handling a blocking process.
- 4
Go·4y
Go runtime: 4 years later
The Go GC returns unneeded memory back to the operating system much more proactively, reducing excess memory consumption and the chance of out-of-memory errors. Pool, a GC-aware tool for reusing memory, has a lower latency impact and recycles memory much more effectively than before.
- 5