Nest.js also has a recipe for using HMR with webpack.
IMHO using a new-generation bundler will make very little difference, since the gains come from using HMR or not. All bundlers still have to use typescript.
Thanks for sharing! Really been loving everything that uses esbuild.
This is great info about your backend dev experience. 😎 Thanks for sharing 🔥
Claudio Bartoli
Splendid work, thanks for sharing!
I like to bundle/minify the production code for the same your reasons.
I've checked out your code from the repo and I noticed that the build directory cannot be renamed.
# works $ node build # attempt 1 - does not work $ mv build my-app $ node my-app # attempt 2 - does not work $ cd build $ node .Any ideas to build the application, than move artifacts and run without any prefix ?