koa-static中间件使用
使用例子
demo源码
https://github.com/ChenShenhai/koa2-note/blob/master/demo/static-use-middleware/
const Koa = require('koa')
const path = require('path')
const static = require('koa-static')
const app = new Koa()
// 静态资源目录对于相对入口文件index.js的路径
const staticPath = './static'
app.use(static(
path.join( __dirname, staticPath)
))
app.use( async ( ctx ) => {
ctx.body = 'hello world'
})
app.listen(3000, () => {
console.log('[demo] static-use-middleware is starting at port 3000')
})
效果
访问http://localhost:3000
访问http://localhost:3000/index.html
访问http://localhost:3000/js/index.js
当前内容版权归 chenshenhai 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 chenshenhai .