1
0
Fork 0

Merge pull request #20 from squatconf/feat/small-improv

Some small improvements
2015
gorhgorh 8 years ago
commit 0829c9f2cc

@ -19,6 +19,6 @@
},
"homepage": "https://github.com/squatconf/website",
"dependencies": {
"ecstatic": "^0.5.8"
"ecstatic": "^1.4.0"
}
}

@ -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)
})

Loading…
Cancel
Save