Is it possible to access Svelte store from external js files?
Yes, absolutely. For one thing, the store API is very simple and nothing prevents you from subscribing to the store yourself to know the value: import myStore from ‘./stores’ myStore.subscribe(value => { // do something with the new value // you could store it for future reference… }) And, if you just want to know … Read more