mirror of
https://gitee.com/docsifyjs/docsify.git
synced 2024-12-01 03:30:00 +08:00
13 lines
358 B
JavaScript
13 lines
358 B
JavaScript
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' })
|
|
res.end(fs.readFileSync('dev.html'))
|
|
})
|
|
}).listen(3000, '0.0.0.0')
|
|
|
|
console.log(`\nListening at http://0.0.0.0:3000\n`)
|