12345678910111213 |
- /**
- * Module dependencies.
- */
- var http = require('http');
- module.exports = http.createServer(function(req, res){
- console.log('%s %s', req.method, req.url);
- var body = 'Hello World';
- res.writeHead(200, { 'Content-Length': body.length });
- res.end(body);
- });
|