Tomas Della Vedova
Tomas Della Vedova
## 🚀 Feature Proposal Currently, we are advertising that Fastify is not best suited for serverless environments. This is true, any kind of support needs to have some workaround, see...
In my opinion, we cannot add every framework in the Node ecosystem, there are a lot!! We should define a base rule to accept or not a framework in our...
Avvio is a fantastic library and the hearth of the Fastify plugin system. In the first days of Fastify (4 years ago!!) @mcollina and I spent months working on this...
At the moment the documentation is almost complex as the actual code, we should fix that.
Hello! Thank you for keeping up this work! We are working on a new JavaScript client for Elasticsearch, and you can find the work in [elastic/elasticsearch-js#next](https://github.com/elastic/elasticsearch-js/tree/next), the new client will...
As titled, I've taken the implementation from [`yaml-template`](https://github.com/delvedor/yaml-template) which is inspired by [2ality](http://2ality.com/2015/01/template-strings-html.html). Hope it is useful! :)
Imagine that you are using `fastify.inject` to communicate with other endpoints of your app and sometime in the future you split to a microservices architecture; your code will break because...
Currently, you can't manipulate the document that gets passed to the bulk helper, if you need to do that, you should pipe the datasource in a transform stream or inside...
As suggested in the [ESM](https://nodejs.org/api/esm.html#esm_package_json_type_field) guidelines of Node.js it would be good to explicit the type of the module. ```diff { + "type": "commonjs", } ```
Currently, the [sniffing logic](https://github.com/elastic/elasticsearch-js/blob/1a7968aba3bbbd9660d582db2252eeafa4b23260/lib/Transport.js#L356-L396) is very optimistic, and it assumes that the ES response is correct and the user has the right permissions. Unfortunately, this does not always apply, and...