1 Star 0 Fork 149

annhoa / godoOA

forked from godo / godoOA 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
app.js 275 Bytes
一键复制 编辑 原始数据 按行查看 历史
icanwallet 提交于 2023-07-26 17:36 . edit form
const Koa = require('koa');
const static = require('koa-static');
const app = new Koa();
const path = require('path')
// 静态文件根目录
const staticPath = './www';
// 注册koa-static中间件
app.use(static(
path.join(__dirname, staticPath)
));
app.listen(3000);
NodeJS
1
https://gitee.com/pig-work/gdoa.git
git@gitee.com:pig-work/gdoa.git
pig-work
gdoa
godoOA
master

搜索帮助