koa-mysql(一)

先来一个hello,world

目录结构

koa-mysql(一)

新建package.json

mkdir koa2s
cd koa2s
npm init

新建index.js

const koa = require('koa');
const app = new koa();
app.listen(3000);
console.log(`app start at localhost:3000`);

安装依赖,执行

cnpm install koa --save
node index.js

koa-mysql(一)

新建数据,返回hello,world

修改index.js

const koa = require('koa');
const app = new koa();

app.use(async(ctx, next) => {
    ctx.response.body = "<h1>hello,world</h1>"
})

app.listen(3000);
console.log(`app start at localhost:3000`);

重新运行

node index.js

koa-mysql(一)

koa

相关推荐