summaryrefslogtreecommitdiff
path: root/http.js
blob: 14c9c9438b1f99961a7eed4622bd85bfd915ca0c (plain)
1
2
3
4
5
6
var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World from Me\n');
  console.log(req);
}).listen(process.env.PORT);