eduproj2/server/index.ts
Michael Zhang ebcce28d5b wtf
2023-08-01 22:20:15 -04:00

10 lines
153 B
TypeScript

import koa from "koa";
const app = new koa();
app.use(async (ctx) => {
ctx.body = "Hello World";
});
console.log("Listening...");
app.listen(6110);