Qails 使用 koa2 作为 webserver,所有 koa2 中间件都可以在 qails 中使用。
下面的代码创建一个最简单的 qails 服务:
const { Qails } = require('qails'); const app = new Qails(); app.use(async (ctx, next) => { ctx.body = 'Hello world'; await next(); }); const port = 12345; app.listen(port, (err) => { if (err) { throw err; } console.log('✅ qails listening on port ' + port); });
如果你发现文档存在错误,请在 GitHub 提个 issue 告诉我们。