You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
968 B
54 lines
968 B
'use strict'
|
|
|
|
const fastify = require('../fastify')()
|
|
|
|
const opts = {
|
|
schema: {
|
|
response: {
|
|
200: {
|
|
type: 'object',
|
|
properties: {
|
|
hello: {
|
|
type: 'string'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fastify
|
|
.addHook('onRequest', function (request, reply, next) {
|
|
next()
|
|
})
|
|
.addHook('onRequest', function (request, reply, next) {
|
|
next()
|
|
})
|
|
|
|
fastify
|
|
.addHook('preHandler', function (request, reply, next) {
|
|
next()
|
|
})
|
|
.addHook('preHandler', function (request, reply, next) {
|
|
setImmediate(next)
|
|
})
|
|
.addHook('preHandler', function (request, reply, next) {
|
|
next()
|
|
})
|
|
|
|
fastify
|
|
.addHook('onSend', function (request, reply, payload, next) {
|
|
next()
|
|
})
|
|
|
|
fastify.get('/', opts, function (request, reply) {
|
|
reply.send({ hello: 'world' })
|
|
})
|
|
|
|
fastify.listen(3000, function (err) {
|
|
if (err) {
|
|
throw err
|
|
}
|
|
console.log(`server listening on ${fastify.server.address().port}`)
|
|
})
|