1
0
Fork 0
mirror of synced 2024-10-03 19:43:32 +13:00
budibase/server/index.js
2019-03-19 21:45:21 +00:00

8 lines
No EOL
136 B
JavaScript

const Koa = require('koa');
const app = new Koa();
app.use(async ctx => {
ctx.body = 'Hello World';
});
app.listen(3000);