Skip to content

Instantly share code, notes, and snippets.

@delvedor
Last active March 6, 2018 13:57
Show Gist options
  • Save delvedor/4e229970921ae35d7bf712c9c60698f6 to your computer and use it in GitHub Desktop.
Save delvedor/4e229970921ae35d7bf712c9c60698f6 to your computer and use it in GitHub Desktop.
const fastify = require('fastify')()
fastify.get('/', async (request, reply) => {
return { hello: 'world' }
})
fastify.get('/callbacks', (request, reply) => {
reply.send({ hello: 'world' })
})
fastify.listen(3000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment