Matteo Collina
Matteo Collina
Yes! Can you open a PR to add it to the ecosystem page?
Add it to this list: https://github.com/fastify/fastify/blob/main/docs/Guides/Ecosystem.md#community in alphabetical order
Thanks for reporting! Can you provide steps to reproduce? We often need a [reproducible example](https://stackoverflow.com/help/minimal-reproducible-example), e.g. some code that allows someone else to recreate your problem by just copying and...
@marklai1998 any PRs to improve the docs are welcome!
Absolutely if you add some tests.
Moved to the autoload module.
The APIs for loaders changed in v20 and it broke ts-node, mostly due to https://github.com/nodejs/node/issues/47880. Once the dust settle and there is an API for us to use, we'll need...
Loaders are mostly stable now, so A PR would be highly welcomed, otherwise this will take a bit.
> You'll find a [minimal reproducible example](https://en.wikipedia.org/wiki/Minimal_reproducible_example) in that repo I would hardly consider that minimal, given the build step, but I was able to reproduce anyway. --- I've checked...
A middleware like: ```js const result = (req, res, next) => { return loggingMiddleware(logger, req, res, next) } result.logger = logger result.express = (err, req, res, next) => { res.err...