diff --git a/server.js b/server.js index 223df7f..7e97549 100644 --- a/server.js +++ b/server.js @@ -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) }) - - -