UNPKG

fastify

Version:

Fast and low overhead web framework, for Node.js

10 lines (7 loc) 182 B
'use strict' const fastify = require('../../../../')() // Declare a route fastify.get('/', function (request, reply) { reply.send({ hello: 'world' }) }) module.exports = fastify