/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

2ality.com
| | www.valentinog.com
1.0 parsecs away

Travel
| | What's special about generator functions and asynchronous generators in JavaScript? Let's find out!
| | andreasimonecosta.dev
1.7 parsecs away

Travel
| | All you should need to know about JavaScript Asynchronous Generators.
| | www.2ality.com
1.8 parsecs away

Travel
| | 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
| | www.integralist.co.uk
16.8 parsecs away

Travel
| Introduction This post will explain how to set-up and configure the various tooling necessary in order to be able to write cross-compatible modern (ES2015+) JavaScript code. Note: if you're unsure of what 'modern' JavaScript looks like, then I'll refer you to these compatibility tables. The tools we'll be using: Babel: transpiler of modern JS into ES5 compatible code. Webpack: a js module bundler. Note: webpack is actually capable of transforming, bundling, packaging just about anything (as we'll see sho...