Fastify is a “fast and low overhead web framework, for Node.js”
yarn add fastify
const fastify = Fastify({ logger: true }) fastify.listen({ port: +process.env.PORT || 3000 })