mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 12:30:18 +00:00
8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
import * as Koa from "koa";
|
|
import serve = require("koa-static");
|
|
|
|
const app = new Koa();
|
|
|
|
app.use(serve('.',{index:false,defer:false}));
|
|
|
|
app.listen(80) |