Echo JS 0.11.0

<~>
mgrahamjo 2385 days ago. link 1 point
Code splitting with module bundlers is the pinnacle of modern JavaScript's problem with overcomplexity. We're talking about using bundlers to un-bundle the bundles they create.

Just create one bundle for shared code, and separate bundles for pages or components that aren't always rendered. Inject those bundles in script tags when you need them.

Replies