UNPKG

fastify-scaffold

Version:

I write a fair number of web apps that use `fastify` (as a web server), `marko` (for templating), and `lasso` (for asset bundling).

8 lines (7 loc) 172 B
'use strict' module.exports = function (fastify, opts, next) { fastify.get('/', (req, reply) => { reply.view('/pages/slash/index', {now: new Date()}) }) next() }