Cottage:koa.js上的简单快速HTTP路由器 源码
Cottage是最快,简单,直观的HTTP路由器框架。 节点上最快的HTTP路由器/框架-查看 简单的代码-使用res.send或ctx.body不会感到厌倦? 我们为什么不能只return响应? 安装 Cottage需要 v8.0.0或更高版本。 $ npm install cottage 例 import { Cottage , Response } from 'cottage' ; const app = new Cottage ( ) ; // just simple return would be enough app . post ( '/' , async ctx => 'H
用户评论