Rails 7 provides a couple of approaches to bundle a rich JavaScript application such as SPA.
To create the JavaScript application, we should specify j|--javascript
option with
importmap (default), webpack, esbuild or rollup when rails new
command gets run.
Although webpack is still among the choices, it has been retired as describe in the
https://github.com/rails/webpacker/blob/master/README.md.
The choice here is esbuild since it is friendly to JavaScript development,
for example, starting from yarn create react-app ...
.
The esbuild is gaining popularity and known to run very fast with its Go-lang implementation.