Log url on server start

This commit is contained in:
dignifiedquire 2016-03-05 09:54:31 +01:00
parent 969b0707b4
commit ef29f01273

View file

@ -1,15 +1,15 @@
#!/usr/bin/env node
var ecstatic = require('ecstatic')
, port = 8000
, app = require('http').createServer(
ecstatic({ root: __dirname + '/public' })
).listen(8000)
).listen(port, function () {
console.log('Listening on http://localhost:' + port)
})
;
process.on('uncaughtException', function (err) {
console.error('Error at:', new Date)
console.error(err.stack)
})