11 lines
153 B
TypeScript
11 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);
|