Skip to content

Instantly share code, notes, and snippets.

@pushkar100
Created October 6, 2020 06:31
Show Gist options
  • Select an option

  • Save pushkar100/852c4da0ed30ec2bd7db16eb98b3dce0 to your computer and use it in GitHub Desktop.

Select an option

Save pushkar100/852c4da0ed30ec2bd7db16eb98b3dce0 to your computer and use it in GitHub Desktop.
Side effects and live bindings output example
/* What will happen if state is duplicated (i.e maintains two states which is wrong!) */
// Console output:
Loaded module
A 0
Loaded module
B 0
/* What happens when aggregation preserves state (as it should be and as it happens with webpackExports) */
// Console output:
Loaded module
A 0
B 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment