Node.js va ser creat per Ryan Dahl començant el 2009, i el seu creixement va ser patrocinat pel seu ocupador, Joyent.[3][4]
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hola, món!\n');
}).listen(8000);
console.log('Servidor disponible a: http://localhost:8000/');