doa:Deno的httpserve:sauropod:的中间件框架。 用:red_heart:从Koa移植 源码
用于Deno的http服务的中间件框架。 从Koa移植。 :high_voltage: 快速开始 基本用法,使用Hello World响应每个请求; import { App } from "https://deno.land/x/doa/mod.ts" ; const app = new App ( ) ; app . use ( async ctx => { ctx . status = 200 ; ctx . body = "Hello World" ; } ) ; app . listen ( { port : 8000 } ) ; 通过app.use(middlewar
用户评论