RSS feed iconGitHub logo

Articles about Node.js

Node.js is a JavaScript runtime that allows running JavaScript outside of the browser. It is used to build application servers, CLI tools, and much more.

Catch rejections in every Promise chain

2022-10-197 minutes readJavaScript, Node.js

In Node.js, omitting catching a rejection in at least one Promise chain leads to an unhandledRejection event and the process being usually killed.

Read more