0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-27 21:39:16 -05:00
logto/packages/core/src/index.ts

14 lines
202 B
TypeScript
Raw Normal View History

2021-06-06 18:30:37 +08:00
import Koa from 'koa';
const app = new Koa();
app.use((ctx) => {
ctx.body = 'Hello, world!';
});
const PORT = 3000;
app.listen(PORT, () => {
console.log(`App is listening on port ${PORT}`);
});