hello world with nodejs
// Carga la biblioteca HTTP de Node.js.
var http = require('http');
// Crea un servicio web para tratar la petición de respuesta del mensaje Hola Mundo.
var server = http.createServer(function (request, response) {
// Establece los parámetros de respuesta.
response.writeHead(200, {'Content-Type': 'text/html'});
// Escribe un mensaje de respuesta del servidor.
response.write('<html><body><h1>Hola Mundo</h1></body></html>');
// Envia una respuesta al cliente
response.end();
});
// Establece el puerto y la IP que la aplicación se ejecutará.
server.listen(3000);
// Imprime un mensaje en el terminal del servidor.
console.log('Servidor Node.js iniciado');