Servidor basico en Node.js
var http = require('http');
http.createServer(onRequest).listen(8888);
console.log('El servidor esta ahora corriendo en http://localhost:8888');
function onRequest(request, response){
console.log('Un usuario hizo una peticion ' + request.url);
response.writeHead(200, {'Content-Type': 'text/plain'});
response.write('Esta es la response');
response.end();
}