Tag: Node.js

How can I improve the performance of my Node.js application?

How improve the performance of my Node.js application?

Node.js is a powerful runtime environment that allows developers to build high-performance web applications. However, as the size and complexity of an application increases, it’s essential to keep an eye on its performance. In this article, we’ll explore some techniques for improving the performance of a Node.js application.

Read more

Simple Context Passing With AsyncLocalStorage in Node.js

Node.js is one of the most popular programming languages used on the web nowadays. It’s single core design has lots of positives, but sometimes can be a little challenging – especially when it comes to passing the context between asynchronous invocations. It seems not to be such a problem anymore, though. Developers can use AsyncLocalStorage in Node.js to overcome long lasting problems. Let’s dive in to check how to do that.

Read more