1
0
Fork 0
mirror of synced 2024-10-01 09:38:55 +13:00
budibase/packages/server/index.js

8 lines
129 B
JavaScript
Raw Normal View History

2019-06-08 01:18:10 +12:00
const Koa = require('koa');
const app = new Koa();
app.use(async ctx => {
ctx.body = 'Hello World';
});
2019-03-20 10:45:21 +13:00
app.listen(3000);