You can use it anywhere, but it's particularly well suited to Svelte apps:
* Cost of adding to a Svelte app < 1kb!
* Static analysis optimises your store subscriptions
* Shares an API (get, set, observe) with Svelte components
Svelte starter kit (state management, testing, routing, webpack etc) from @rob_balfre
```bash
npx degit rob-balfre/svelte-starter-kit my-project
cd my-project
npm install
npm run dev
```
...and you're off to the races:
github.com/rob-balfre/svelte…