daily pastebin goal
71%
SHARE
TWEET

Untitled

a guest Jul 3rd, 2015 191 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var http = require('http');
  2. http.createServer(function (req, res) {
  3.     res.writeHead(200, {'Content-Type': 'text/plain'});
  4.     res.end('Hello World\n');
  5. }).listen(process.env.PORT, process.env.IP);
  6. console.log(process.env.IP)
  7. console.log(process.env.PORT)
RAW Paste Data
Top