mirror of
https://github.com/koajs/examples.git
synced 2026-01-25 14:48:15 +00:00
9 lines
170 B
JavaScript
9 lines
170 B
JavaScript
const Koa = require('koa');
|
|
const app = module.exports = new Koa();
|
|
|
|
app.use(async function(ctx) {
|
|
ctx.body = 'Hello World';
|
|
});
|
|
|
|
if (!module.parent) app.listen(3000);
|