Skip to content

idleberg/svelte-crossorigin-store

Repository files navigation

svelte-crossorigin-store

Share your Svelte store across origins, including iFrames.

License Version Build

Features

  • made for Svelte, works anywhere
  • synchronizes store across multiple origins
  • supports iFrames
  • tiny (~450 bytes minified+gzipped)

Installation

npm install svelte-crossorigin-store

Usage

Import

import { createStore } from 'svelte-crossorigin-store';

const store = createStore('Hello, world');
const unsubscribe = store.subscribe(value => console.log('State updated:', value));

Or, in your Svelte component:

<script>
	import { createStore } from 'svelte-crossorigin-store';

	const store = createStore('Hello, world');
</script>

<p>Current State: {$store}</p>

⚠️ Take note that the API doesn't follow a publisher/subscriber approach. Hence, you need to make sure that instances are not initialized with the same value. Otherwise, an infinite loop will occur!

API

createStore

createStore<T>(initialValue?: T, {
	allowedOrigins?: string[];
	id?: string;
	iframeSelector?: string;
	onChange?: (value: any) => void;
});

Methods

The created store exposes the same API methods like a writable svelte/store:

  • set()
  • update()
  • subscribe()

Please refer to the official documentation.

Demo

This repository contains a demo application of a classic counter that synchronizes its state across three origins: the parent page and two iFrames running on different ports.

To launch the application, run the following:

pnpm start

This should automatically open https://localhost:3030 in your default browser.

License

This work is licensed under The MIT License.