|
You are here |
putridparrot.com | ||
| | | | |
vladivanov.me
|
|
| | | | | What are modular systems in JavaScript? Why are there so many? What problems can arise from this and how can they be solved? And what to choose in 2023? I'll tell in this article. | |
| | | | |
slides.com
|
|
| | | | | Today we all use Webpack (right?), but I remember a time when you had to manually copy-paste JavaScript files to create a package of libraries you could use in your frontend application. Many years have passed since then and the landscape of module bundlers evolved significantly along with the evolution of JavaScript and Node.js. In this talk, I will try to uncover some JavaScript module history and illustrate how a module bundler actually works, so that the next time you will use Webpack you will be abl... | |
| | | | |
www.2ality.com
|
|
| | | | | Rich Harris' module bundler Rollup popularized an important feature in the JavaScript world: tree-shaking, excluding unused exports from bundles. Rollup depends on the static structure of ES6 modules (imports and exports can't be changed at runtime) to detect which exports are unused. Tree-shaking for webpack is currently in beta. This blog post explains how it works. The project we are going to examine is on GitHub: tree-shaking-demo | |
| | | | |
egghead.io
|
|
| | | You're going to run into a lot of frustration writing Node CLI's unless you get good at debugging. (Even if you use TypeScript!) To understand code exec... | ||