webstom samples

var server = require('http');
server.createServer(function(req, res){
res.writeHead(200, {'Content-Type':'text/plain'});
res.end("Hellow node.js!\n");
}).listen(3000, 'localhost');
console.log('Server running at http://localhost:3000/');

0123456789