2.0.0 • Published 5 months ago

svelte-store2storage v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

NPM Version

svelte-store2storage

A functional approach to sync stores to local or session storage

💾 Install

npm i svelte-store2storage

⚡ Quick example

// stores.ts
import { writable } from 'svelte/store';
import { syncToLocalStorage } from 'svelte-store2storage';

export const personStore = writable({
  name: 'John Doe'
});

syncToLocalStorage(personStore, 'storage_key');

🔨 API

interface EncodingOptions<T> {
  encode?: (value: T) => string | undefined;
  decode?: (value: string) => T;
}

syncToLocalStorage<T>(store: IStore<T>, key: string, encodingOptions?: EncodingOptions<T>): () => void
syncToSessionStorage<T>(store: IStore<T>, key: string, encodingOptions?: EncodingOptions<T>): () => void
// stores.ts

import { BooleanStore } from 'butik';

export const store = new BooleanStore(false);

syncToLocalStorage(store, 'storage_key');

Utility methods to sync stores with localStorage and sessionStorage which returns a callback to unsync again. Besides receiving a store and a storage key as parameters, they can also have custom encoding logic. If no encoding options are passed, JSON.stringify and JSON.parse is used. If you are using SvelteKit, remember to wrap the methods in if (browser).