美文网首页
koa2静态文件

koa2静态文件

作者: 夏夏夏夏顿天 | 来源:发表于2018-11-26 15:44 被阅读6次

这篇主要介绍koa2处理静态文件的中间件

用到的版本:

image.png

项目的结构:

image.png

大家可以往static文件夹里面添加点东西

编辑index.js

const Koa = require('koa')
const statics = require('koa-static')
const path = require('path')
const app = new Koa()

const staticPath = './static'

app.use(statics(
  path.join(__dirname, staticPath)
))

app.use(async (ctx) => {
    ctx.body = 'hello world'
})

app.listen(3000)

console.log('localhost:3000')

启动服务器

node index.js

然后在浏览器访问:http://localhost:3000/images/node.png

可以看到:

image.png

或者访问其他静态文件,都可以访问了

源码地址:https://github.com/xiaqijian/koa2-lessons/tree/master/lesson2

相关文章

网友评论

      本文标题:koa2静态文件

      本文链接:https://www.haomeiwen.com/subject/tsybqqtx.html