Node.js is an open-source, cross-platform JavaScript run-time environment that executes JavaScript code outside of a browser.

Node.jsĀ® is a JavaScript runtime built on Chrome’s V8 JavaScript engine.

As an asynchronous event driven JavaScript runtime, Node is designed to build scalable network applications. In the following “hello world” example, many connections can be handled concurrently. Upon each connection the callback is fired, but if there is no work to be done, Node will sleep.

const http = require('http');
const hostname = '127.0.0.1';
const port = 3000;
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello World\n');
});
server.listen(port, hostname, () => {
console.log(Server running at http://${hostname}:${port}/);
});

Sources:

https://nodejs.org/en/

http://nodeframework.com/

Last modified: April 3, 2019

Author

Comments

Write a Reply or Comment