Prerequisites
Issue
In the newest README.md, we have a description fastify.listen(3000, err => {, but this leads a deprecation warning, like
FastifyDeprecation: Variadic listen method is deprecated. Please use ".listen(optionsObject)" instead. The variadic signature will be removed in fastify@5.
This should be fastify.listen({ port: 3000 }, err => {.