This repository has been archived on 2022-06-19. You can view files and clone it, but cannot push or open issues or pull requests.
ContainerImage.WendyUI/Fastify/server.js
djpbessems 21bb235a3f
Some checks failed
continuous-integration/drone/push Build is failing
Added build for Fastify
2022-01-20 15:16:21 +01:00

18 lines
358 B
JavaScript

// Require the framework and instantiate it
const fastify = require('fastify')({ logger: true })
// Declare a route
fastify.get('/', async (request, reply) => {
return { hello: 'world' }
})
// Run the server!
const start = async () => {
try {
await fastify.listen(3001)
} catch (err) {
fastify.log.error(err)
process.exit(1)
}
}
start()