index.js
const Koa = require("koa");
const app = new Koa();
app.use((ctx) => {
switch (ctx.url) {
case "/":
ctx.body = "<h1>index.html</h1>";
break;
default:
ctx.body = "<h1>404 Not Found.</h1>";
}
});
app.listen(3000);