|
You are here |
2ality.com | ||
| | | | |
ponyfoo.com
|
|
| | | | | ||
| | | | |
tobyho.com
|
|
| | | | | ||
| | | | |
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 | |
| | | | |
adropincalm.com
|
|
| | | Babel is a JavaScript compiler mainly known for React and the ability to use js syntax not yet shipped to the browser. In this introduction we'll try to cover some of the core ideas such as @babel/core, @babel/cli, plugins, presets and the config file. The main idea In the js world, we like to use new and exotic syntaxes even if the browser doesn't provide support and never will. Before ie11 deprecation, a classic example was using the arrow function syntax. | ||