koa常用的中间件

koa常用的中间件

1.项目初始化 npm init -y

2.安装koa npm i koa -S

3.使用

            const Koa = require('koa');
            const app = new Koa();
            app.use(async(ctx)=>{
                拿东西  ctx.request.query
                输出    ctx.body = {}
            })

4.路由

            1.安装  npm i koa-router -S
            2.引包
                const router = require('koa-router')();

            3.  router.get('/',async (ctx)=>)
                router.get('/',require('../))
            
            4. app.use(router.routes())

5.静态资源

            1.安装  npm i koa-static -S
            2.引包
                const static = require('koa-static');
                const path = require('path');

            3. 使用static中间件,并且设置静态资源的目录
                app.use(static(path.join(__dirname,'www'))) 

你可能感兴趣的:(前端基础)