koa
node_bin
这个作者很懒,什么都没留下…
展开
-
nodejs koa如何封装mysql连接池
koa如何封装mysql连接池原创 2022-10-17 15:04:14 · 520 阅读 · 0 评论 -
Koa发送http请求
const Koa = require('koa');const app = new Koa();// loggerapp.use(async (ctx, next) => { console.log('第一层洋葱 - 开始') await next(); const rt = ctx.response.get('X-Response-Time'); console.log(`${ctx.method} ${ctx.url} - ${rt}`); console.log(.原创 2022-01-04 14:37:41 · 1686 阅读 · 0 评论 -
koa2简单入门-helloworld
const koa = require('koa');const app = new koa();app.use(async ctx => { ctx.body = 'hello world'});app.listen(3000);Koa 是一个新的 web 框架,由 Express 幕后的原班人马打造, 致力于成为 web 应用和 API 开发领域中的一个更小、更富有表现力、更健壮的基石。 通过利用 async 函数,Koa 帮你丢弃回调函数,并有力地增强错误处理。 Koa 并.原创 2021-09-29 14:21:23 · 227 阅读 · 0 评论