宇天 1c6d74975d fixed method error 2022-04-25 23:53:24 +08:00
.vscode 完成 2022-04-09 20:26:23 +08:00
.gitignore 完成 2022-04-09 20:26:23 +08:00
.prettierrc.yaml 完成 2022-04-09 20:26:23 +08:00
.vscodeignore 完成 2022-04-09 20:26:23 +08:00
LICENSE 完成 2022-04-09 20:26:23 +08:00
README.md 支持headers注入 2022-04-25 23:37:27 +08:00
index.js fixed method error 2022-04-25 23:53:24 +08:00
logo.png 完成 2022-04-09 20:26:23 +08:00
package.json 支持headers注入 2022-04-25 23:37:27 +08:00

README.md

simple.http

🔥 简单的http服务器, 方便临时调试html。

Version Rating Installs

插件说明

这插件只是因为Live Server插件有bug,应一个基友需求临时写的。如果你有其他的功能需求, 请在插件商店中搜索其他插件

插件使用

在项目根目录中放置 .httpserver文件, 并配置好之后, 重启或重新加载窗口, 以启动服务。

.httpserver 文件

使用.httpserver来配置web服务器信息, 该文件应为一个json格式的。

{
  "enabled": true,  // 这里配置为 true 才会启动web服务
  "port": 23333, // 【可选】  默认使用 23333 端口, 如果被使用了, 会向上查找可用端口
  "root": ".", // 【可选】 web服务的根目录, 默认为当前项目的根目录, 可填写相对项目根目录的路径。
  "headers": {  // 【可选】支持注入一些头信息, 方便特殊需要的调试
    "cache-control": "no-store" //  默认为 no-store
    ...
  }
}
🔥 简单的http服务器, 方便临时调试html
JavaScript 94.6%
HTML 5.4%