DEV Community

Discussion on: JavaScript Bundlers: An in-depth comparative 👍👎 Is Webpack still the best bundler in 2021? 📦

Collapse
 
michaelcurrin profile image
Michael Currin • Edited

This could be nice as a post series grouped under a title, as it's currently hard to jump to sections.

I have quickstarts here comparing a few options including working with TS and React where a bundler/transposer is necessary

github.com/MichaelCurrin/javascrip...

I'm a fan of esbuild as well as it is supposed to be several times faster then alternatives, it supports esmodules i.e. import from ... and it is zero config so you can use it from the command line for any project. npx esbuild ...

michaelcurrin.github.io/dev-cheats...