💎一站式轻松地调用各大LLM模型接口,
支持GPT4、智谱、豆包、星火、月之暗面
及文生图、文生视频
广告
``` const Koa = require('koa') const app = new Koa() app.use(ctx => { ctx.body = 'hello koa' }) app.listen(3030, () => { console.log('http://localhost:3030/'); }) ```
1.第一个koa应用
2.koa中间件与洋葱模型
3.路由
4.http options
5.restful最佳实现