@storix-js/vanilla
v0.1.1
Published
Vanilla JavaScript helpers for Storix.
Readme
@storix-js/vanilla
Vanilla JavaScript helpers for Storix.
Install
npm install @storix-js/core @storix-js/vanillaUsage
import { subscribe } from '@storix-js/vanilla';
import { useCounterStore } from './store';
const counter = useCounterStore();
const stop = subscribe(counter, () => {
console.log(counter.count);
});Use this package when you want a tiny helper layer over direct $subscribe() access.
