fastify
Version:
Fast and low overhead web framework, for Node.js
51 lines (45 loc) • 965 B
JavaScript
const fastify = require('../fastify')()
const opts = {
schema: {
response: {
'2xx': {
type: 'object',
properties: {
hello: {
type: 'string'
}
}
}
}
}
}
fastify
.addHook('onRequest', function (req, res, next) {
console.log('onRequest')
next()
})
.addHook('preHandler', function (request, reply, next) {
console.log('preHandler')
next()
})
.addHook('onSend', function (request, reply, payload, next) {
console.log('onSend')
next()
})
.addHook('onResponse', function (res, next) {
console.log('onResponse')
next()
})
.addHook('onRoute', function (routeOptions) {
console.log('onRoute')
})
fastify.get('/', opts, function (req, reply) {
reply.send({ hello: 'world' })
})
fastify.listen(3000, function (err) {
if (err) {
throw err
}
console.log(`server listening on ${fastify.server.address().port}`)
})