Skip to content

Instantly share code, notes, and snippets.

@labra
Created January 9, 2016 14:01
Show Gist options
  • Save labra/de337178e8457a706e1a to your computer and use it in GitHub Desktop.
Save labra/de337178e8457a706e1a to your computer and use it in GitHub Desktop.
Ejemplo Node
var http = require('http');
var procesa = function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hola desde Node\n');
}
var server = http.createServer()
server.on('request',procesa);
server.listen(3000);
console.log('Servidor arrancado desde el MTI');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment