Sova
Sova
Is this issue still actual?
What about to make `.map()` returns `ReadonlyStore`? And for convenient usage we can add `.readonly(): ReadonlyStore`. Usage: ```ts const $counter = createStore(0) // public api export const $counterRead = $counter.readonly()...
`Store` β can be used as a source/clock and target `StoreSource` β can be used only as a source/clock `StoreTarget` β can be used only as a target `Event` β...
@zerobias @uulaal Is it still actual? Looks like it solved, isn't it?
> I would suggest to do the same for stores too How it should works with the scope restoration? ```ts const scope = fork({ value: window.VALUES }) ```
Effector is not built over redux.
You can start from template: https://github.com/sergeysova/effector-ssr
Looks like order of chunk loading and decision to store a `dataFetched` calls history is an application's code responsibility. I have no idea how effector can help there, in some...
This feature requires to save each created sid to a some storage. But if we have something like `import().then()` this logic will have a bug with floating behaviour. Maybe you...