UNPKG

fastify-cli

Version:

Run a fastify route with one command!

16 lines (13 loc) 239 B
'use strict' module.exports = function (fastify, options, next) { fastify.get('/', function (req, reply) { reply.send({ hello: 'world' }) }) next() } module.exports.options = { https: { key: 'key', cert: 'cert' } }