Skip to content

Instantly share code, notes, and snippets.

@julianduque
Created December 11, 2013 23:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save julianduque/b5827487ed4e7af6daee to your computer and use it in GitHub Desktop.
Save julianduque/b5827487ed4e7af6daee to your computer and use it in GitHub Desktop.
var http = require('http');
http.createServer(function (req, res) {
res.write(new Date().toString());
res.write('\n');
res.write("process.env.TZ: "+ process.env.TZ);
res.end();
}).listen(8080);
console.log('Started!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment