JavaScript bundlers (2026)
what is a bundler
bundler is tool that takes a js file, find all the “requires” packages declared in it, and bundle them all the code into a single js file.
js did not have modules system before ECMAScript 2015 . People created CommonJS Module System , and is used in nodejs.
it loads library by code like
const math = require('./math.js');
but this isn't supported by browsers.
Thus, use bundler to merge all the js files into one.
browserify. 2017
webpack
modern web dev history. 2010 to 2026
- The ugly web dev history, frontend. 2010 to 2026
- Modern JavaScript Explained For Dinosaurs. By Peter Jang. 2017
- JS: ECMAScript 2015
- JS: CommonJS Module System (2009 to 2026)
- History of JavaScript, 1995 to 2025.
- npm Disease (2021)
- Why was Electron Created (JavaScript framework, 2013)
- JavaScript runtime platforms (2026)
- JavaScript package managers (2026)
- JavaScript bundlers (2026)
- JavaScript UI Frameworks (2026)
- JavaScript compilers (2026)
- JavaScript build tools (2026)
- JavaScript task runners (2026)