Nice article!
Might be nice to add a minimum node version in your package.json with something like:
```
"engines": {
"node": ">= 14.18.0",
"npm": ">= 6.14.15"
},
```
For building fast API's but still using NodeJS instead of Go (even though Go probably will win any benchmark against NodeJS frameworks) I would recommend going directly for NestJS with fastify (makes up to 78,956 req/sec by their benchmark). NestJS has its own cli that by default configures the Typescript project with their libraries, which fits good for enterprise companies.
Thanks again for the article,
cheers,