增加对history路由的支持
parent
4ec028cd1f
commit
9c2b9020e7
13
index.js
13
index.js
|
@ -71,6 +71,7 @@ function createServer() {
|
||||||
http
|
http
|
||||||
.createServer(function (req, res) {
|
.createServer(function (req, res) {
|
||||||
let pathname = parse(req.url).pathname.slice(1)
|
let pathname = parse(req.url).pathname.slice(1)
|
||||||
|
let paths = pathname.split('/')
|
||||||
|
|
||||||
pathname = decode(pathname) || 'index.html'
|
pathname = decode(pathname) || 'index.html'
|
||||||
|
|
||||||
|
@ -93,7 +94,17 @@ function createServer() {
|
||||||
res.writeHead(200, 'OK')
|
res.writeHead(200, 'OK')
|
||||||
fs.origin.createReadStream(file).pipe(res)
|
fs.origin.createReadStream(file).pipe(res)
|
||||||
} else {
|
} else {
|
||||||
|
if (paths.length > 1 && paths[0].endsWith('.html')) {
|
||||||
|
let rootFile = join(root, paths[0])
|
||||||
|
if (fs.isfile(rootFile)) {
|
||||||
|
res.setHeader('accept-ranges', 'bytes')
|
||||||
res.setHeader('content-type', MIME_TYPES.html)
|
res.setHeader('content-type', MIME_TYPES.html)
|
||||||
|
res.setHeader('content-length', fs.stat(rootFile).size)
|
||||||
|
res.writeHead(200, 'OK')
|
||||||
|
fs.origin.createReadStream(rootFile).pipe(res)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
res.setHeader('content-length', 0)
|
res.setHeader('content-length', 0)
|
||||||
res.setHeader('x-url', file)
|
res.setHeader('x-url', file)
|
||||||
res.writeHead(404, 'Not Found')
|
res.writeHead(404, 'Not Found')
|
||||||
|
@ -159,8 +170,6 @@ exports.activate = function (ctx) {
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
let editor = vsc.window.activeTextEditor
|
let editor = vsc.window.activeTextEditor
|
||||||
if (editor) {
|
if (editor) {
|
||||||
console.log(editor)
|
|
||||||
|
|
||||||
let pathname = editor.document.uri.fsPath.slice(root.length)
|
let pathname = editor.document.uri.fsPath.slice(root.length)
|
||||||
|
|
||||||
vsc.commands.executeCommand('vscode.open', baseUrl + pathname)
|
vsc.commands.executeCommand('vscode.open', baseUrl + pathname)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "simple-http",
|
"name": "simple-http",
|
||||||
"displayName": "simple http",
|
"displayName": "simple http",
|
||||||
"description": "🔥 简单的http服务器, 方便临时调试html",
|
"description": "🔥 简单的http服务器, 方便临时调试html",
|
||||||
"version": "1.3.1",
|
"version": "1.4.0",
|
||||||
"publisher": "yutent",
|
"publisher": "yutent",
|
||||||
"author": "Yutent [@yutent]",
|
"author": "Yutent [@yutent]",
|
||||||
"icon": "logo.png",
|
"icon": "logo.png",
|
||||||
|
|
Loading…
Reference in New Issue