|
|
%!s(int64=4) %!d(string=hai) anos | |
|---|---|---|
| .. | ||
| README.md | %!s(int64=4) %!d(string=hai) anos | |
| koa使用技巧.md | %!s(int64=4) %!d(string=hai) anos | |
Koa 使用安装koa
npm install --save koa
启动koa服务
const Koa = require('koa')
const app = new Koa()
app.use(async ctx => { ctx.body = 'hello world'})
app.listen(3000)
添加koa路由插件