8 lines
136 B
JavaScript
8 lines
136 B
JavaScript
|
const Koa = require('koa');
|
||
|
const app = new Koa();
|
||
|
|
||
|
app.use(async ctx => {
|
||
|
ctx.body = 'Hello World';
|
||
|
});
|
||
|
|
||
|
app.listen(3000);
|