KOA
- 官网
官网: https://www.koajs.com.cn/
- 安装
在 vs code 中运行:npm i koa
- 目录
在 node_modules 目录下出现 koa 及 其依赖组件;
- 关键文件目录
如下:
- 调用
const Koa = require('koa');
- 创建server
const Koa = require('koa');
const koaStaticCache = require('koa-static-cache');
const KoaRouter = require('koa-router');
const koaBody = require('koa-body');
const app = new Koa();
const router = new KoaRouter();
router.get('', async (ctx, next) => {
ctx.body = '服务器启动成功了';
})
app.use(router.routes());
app.listen(8888, () => {
console.log(`服务启动成功:http://localhost:8888`);
});
- 数据链接
// 数据链接
let connection = null;
app.use(async (ctx, next) => {
if (!connection) {
connection = await mysql.createConnection({
host: 'localhost',
user: 'root',
password: '***',
database: '***'
});
}
await next();
})
未完待续…