plex-web-downloader/node_modules/cluster/examples/cli-app.js

13 lines
268 B
JavaScript
Raw Permalink Normal View History

2015-10-13 15:47:32 -04:00
/**
* 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);
});