UNPKG
rc-anywhere
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0
一个简单的Koa静态服务器,支持代理配置
github.com/chenxigeng/rc-anywhere
chenxigeng/rc-anywhere
rc-anywhere
/
lib
/
middlewares
/
static.js
7 lines
(5 loc)
•
190 B
JavaScript
View Raw
1
2
3
4
5
6
7
const
serve =
require
(
'koa-static'
);
const
mount =
require
(
'koa-mount'
);
module
.
exports
=
function
createStaticMiddleware
(
options
) {
return
mount
(
'/'
,
serve
(options.
directory
)); };