You are here |
v8.dev | ||
| | | |
nodesource.com
|
|
| | | | Discover how Node.js's new support for synchronous ESM graphs simplifies transitions to ECMAScript Modules, enhancing developer experience. | |
| | | |
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 | |
| | | |
2ality.com
|
|
| | | | The ECMAScript proposal "import()" by Domenic Denicola is at stage 4 and part of ECMAScript 2020. It enables dynamic loading of ECMAScript modules and is explained in this blog post. | |
| | | |
domenic.me
|
|
| | A reference guide for JavaScript iterator and generator terminology, from back when they were just starting to see implementations in JavaScript engines. |