/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.1 parsecs away

Travel
| | I'm sure you already know everything about ECMAScript modules, so here's a quick recap for myself!
| | www.2ality.com
0.6 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.jakearchibald.com
2.3 parsecs away

Travel
| | They behave differently, so make sure you pick the right one.
| | www.sjoerdlangkemper.nl
21.5 parsecs away

Travel
| JSON Web Tokens or JWTs are used by some web applications instead of traditional session cookies. Because of their statelessness and the signature implementation there are some security issues that are specific to JWTs. This post describes some ways you can verify that a JWT implementation is secure.