mirror of
https://github.com/logto-io/logto.git
synced 2025-01-27 21:39:16 -05:00
14 lines
202 B
TypeScript
14 lines
202 B
TypeScript
|
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}`);
|
||
|
});
|