Files
sapper/test/app/routes/echo/server-route/[slug].js
2018-09-03 18:36:07 -04:00

15 lines
236 B
JavaScript

export function get(req, res) {
res.writeHead(200, {
'Content-Type': 'text/html'
});
res.end(`
<!doctype html>
<html>
<head><meta charset="utf-8"></head>
<body>
<h1>${req.params.slug}</h1>
</body>
</html>
`);
}