文件名称:node-just-http
文件大小:6KB
文件格式:ZIP
更新时间:2024-07-14 06:56:15
JavaScript
只是-http 简单的半静态 http 服务器。 主要是我玩弄 http 和 fs 模块的结果,但它可能为某些人服务。 安装 从 npm 安装: npm install just-http 用法 创建一个新服务器: var server = require("just-http").createServer(); 使用正则表达式映射文件路径: server.map("^/$", "./www-test/index.html"); server.map("^/(.+)$", "./www-test/$1"); 将路径映射到函数,以提供动态内容: server.map("^/dynamic$", function (request, response) { try { // TODO : do something smart } catch (
【文件预览】:
node-just-http-master
----.gitignore(25B)
----package.json(529B)
----example.js(659B)
----readme.md(885B)
----www-test()
--------test.png(881B)
--------style.css(71B)
--------index.html(597B)
----server.js(7KB)