var http = require("http");
function peticionServidor(req, res)
{
res.writeHead(200,{"Content-type" : "text/html"});
res.write("<h1>Hola Mundo!</h1> \n\n Bienvenido a Node.js y npm");
res.end();
}
http.createServer(peticionServidor).listen(8888);
console.log("Servidor creado");