Files
Node.js-14-Cookbook/Chapter06/koa-app/routes/index.js
T
2020-05-30 19:34:07 +01:00

18 lines
405 B
JavaScript

const router = require("@koa/router")();
router.get("/", async function (ctx) {
const title = "Koa.js";
ctx.body = `
<html>
<head>
<title> ${title} </title>
<link rel="stylesheet" href="styles.css"> </head>
<body>
<h1> ${title} </h1>
<p> Welcome to ${title} </p>
</body>
</html>
`;
});
module.exports = router;