Node.js runs the v8 javascript engine, the core of google chrome, outside of the browser This allows node.js to be very performant A node.js app runs in a single process, without creating a new thread for every request Node.js is a free, open source tool that lets you run javascript outside the web browser With node.js, you can build fast and scalable applications like web servers, apis, tools, and more. It is built on chrome’s v8 javascript engine
This means it's asynchronous, and doesn't block itself for one request (but rather immediately moves to the next request) This makes node extraordinarily fast and efficient. This practical node.js tutorial provides you with all you need to build web applications and api using node.js and express framework. An introduction before we dive in, let‘s briefly recap what exactly node.js is This node.js tutorial covers everything you need to know to get started with node.js, from installing and configuring the environment to building and deploying web applications.
OPEN