koa-static静态托管

安装

1
npm i koa-static --save

使用

1
2
3
4
5
6
7
8
const Koa = require('koa');
const app = new Koa();
// 引入 koa-static
const koaStatic= require('koa-static');
const path = require('path');

app.use(koaStatic(path.join(__dirname, './static')))
app.listen(3030);

先看一下项目的目录结构
1.png
查看静态文件
2.png

注意:

访问静态文件时,要直接通过http://localhost:3030/index.html访问,不是http://localhost:3030/static/index.html