You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env node
|
|
|
|
var ecstatic = require('ecstatic')
|
|
, app = require('http').createServer(
|
|
ecstatic({ root: __dirname + '/public' })
|
|
).listen(8000)
|
|
;
|
|
|
|
process.on('uncaughtException', function (err) {
|
|
console.error('Error at:', new Date)
|
|
console.error(err.stack)
|
|
})
|
|
|
|
|
|
|