docsify/app.js

15 lines
378 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')
var notfound = fs.readFileSync('404.dev.html')
http.createServer(function (req, res) {
serveStatic('.')(req, res, function () {
res.writeHead(404, { 'Content-Type': 'text/html' })
res.end(notfound)
})
}).listen(3000)
console.log(`\nListening at http://localhost:3000\n`)