cli-app.js 268 B

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