DEV Community

Discussion on: 🚗 Sidecar for a Code splitting

Collapse
 
thekashey profile image
Anton Korzunov • Edited

It was more about:

  1. You was exporting a Thing from your library
  2. You separated a thing to Main and Sidecar
  3. You are exporting Main, just the one part, and the old Thing assembled back from new pieces. Library public API is not changed. This is no more than a minor bump.
  4. You are exporting a Sidecar via another endpoint
  5. ....
  6. You are assembling a Thing in a user space from Main and lazy Sidecar.

Technically you may keep import in a library code, but you will loose control on chunk name and prefetching.

As I said - this is a subject to complete and argue about.