Node.js - example asynchronous API

Node.js took the implementation of Javascript in the Chromium browser (the open source version of Chrome) and made it into a back end server platform.

Everything runs with one event loop and all the I/O calls are asynchronous - aka non blocking.

Â