app.js 231 B

1234567891011
  1. var http = require('http');
  2. module.exports = http.createServer(function(req, res){
  3. console.log('%s %s', req.method, req.url);
  4. var body = 'Hello';
  5. res.writeHead(200, { 'Content-Length': body.length });
  6. res.end(body);
  7. });