起步

PPG007 ... 2023-5-9 Less than 1 minute

# 起步

# 安装

yarn add koa
yarn add -D @types/koa
1
2

# Hello World

import koa =  require('koa');
const app = new koa();
app.use((ctx) => {
    ctx.body = 'Hello World';
});
app.listen(8080, '0.0.0.0');
1
2
3
4
5
6
Last update: May 9, 2023 09:46
Contributors: Koston Zhuang