fastify-winston Install npm i fastify-winston winston Usage import fastify from "fastify"; import fastifyWinston from "fastify-winston"; const app = fastify({ logger: fastifyWinston({ pretty: true }), }); app.log.info("hello world"); app.listen(); License Licensed under MIT.