How do I use solid for reactivity without a build step?
I like solid as a frontend library, and I want to use it as a "vanilla" state management library for reactivity.
However, I'm confused why running this script without bundling does nothing:
After I bundle (using rollup or bun) and run the script, my effect runs and logs the value of
However, I'm confused why running this script without bundling does nothing:
After I bundle (using rollup or bun) and run the script, my effect runs and logs the value of
counter, like I expect. How does bundling make reactivity work, even without using babel?