docsify/app.js

13 lines
362 B
JavaScript
Raw Normal View History

2016-11-26 18:37:17 +08:00
var serveStatic = require('serve-static')
var http = require('http')
var fs = require('fs')
http.createServer(function (req, res) {
serveStatic('.')(req, res, function () {
res.writeHead(404, { 'Content-Type': 'text/html' })
2016-11-27 13:09:18 +08:00
res.end(fs.readFileSync('404.dev.html'))
2016-11-26 18:37:17 +08:00
})
}).listen(3000, '0.0.0.0')
2016-11-26 18:37:17 +08:00
console.log(`\nListening at http://0.0.0.0:3000\n`)