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

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