npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

unistore-browser-sync

v1.1.0

Published

Extend a Unistore store to replicate state for your browser extension using browser.runtime.Port

Downloads

7

Readme

Unistore Browser Sync

Extend a Unistore store to replicate state for your browser extension using browser.runtime.Port, enabling you to share and manipulate state between an extension's background, popup, and options scripts.

Example

// background.js
import createStore from 'https://unpkg.com/browse/[email protected]/dist/unistore.es.js';
import { primary } from 'https://unpkg.com/unistore-browser-sync';

const initialState = { count: 1 };
const actions = {
	increment( state ) {
		return { count: state.count + 1 };
	},
};
const store = primary( createStore( initialState ), actions );
// popup.js
import createStore from 'https://unpkg.com/browse/[email protected]/dist/unistore.es.js';
import { replica } from 'https://unpkg.com/unistore-browser-sync';

replica( createStore() ).then( ( store ) => {
	const logCount = () => console.log( 'The current count is %d.', store.getState().count );
	logCount();
	// Logs: "The current count is 1."
	store.subscribe( logCount );

	store.dispatch( 'increment' );
	// Logs: "The current count is 2."
} );

Installation

Install using npm:

npm install unistore-browser-sync

Or reference directly from unpkg:

https://unpkg.com/unistore-browser-sync

Usage

Unistore Browser Sync uses the browser.runtime.Port interface. If you support Chrome, you should include the WebExtension browser API polyfill if you are not already using it:

<script src="/path/to/browser-polyfill.min.js"></script>

Unistore Browser Sync is written using ES Modules. You can import directly from the script if you are already using <script type="module"> for your extension:

import { replica } from 'https://unpkg.com/unistore-browser-sync';

Otherwise, include Unistore Browser Sync using a script tag. Note that it must be assigned type="module".

<script type="module" src="https://unpkg.com/unistore-browser-sync"></script>

When included as a script tag, the exported members will be added to the window global as window.unistoreBrowserSync:

const { primary, replica } = window.unistoreBrowserSync;

Syncing occurs between one primary store and one or more replica stores. You should initialize your primary store in your extension's background script, passing an instance of a Unistore store, plus an optional object of named action functions. Actions are bound to the store in the same way as Unistore's action function. A new dispatch method will be added to primary and replica store objects, enabling you to reference the actions in other scripts.

// background.js
import createStore from 'https://unpkg.com/browse/[email protected]/dist/unistore.es.js';
import { primary } from 'https://unpkg.com/unistore-browser-sync';

const initialState = { count: 1 };
const actions = {
	increment( state ) {
		return { count: state.count + 1 };
	},
};
const store = primary( createStore( initialState ), actions );

In other scripts where you wish to consume from the primary store, you should use the replica exported member of the module. This function accepts an instance of a store on which the primary store state will be set continuously. The return value is a promise which resolves once a connection has been established to the primary store. The resolved value of the promise is a reference to the enhanced store object. A replica store should be treated as read-only with the exception of the dispatch action. All state mutations should occur via the actions defined in the primary store, called using the replica store's dispatch function.

// popup.js
import createStore from 'https://unpkg.com/browse/[email protected]/dist/unistore.es.js';
import { replica } from 'https://unpkg.com/unistore-browser-sync';

replica( createStore() ).then( ( store ) => {
	const logCount = () => console.log( 'The current count is %d.', store.getState().count );
	logCount();
	// Logs: "The current count is 1."
	store.subscribe( logCount );

	store.dispatch( 'increment' );
	// Logs: "The current count is 2."
} );

API

primary

Enhances the given store to sync changes to all connected replica stores. An optional object of actions keyed by action name enables state mutation from replica stores or the primary store itself. An object returned by a dispatched action applies as a patch on the current store state.

Parameters:

  • store (Store) Store to enhance.
  • actions (Object) Action map.

Returns: (SyncStore) Primary store

replica

Given a store to enhance as a replica of the primary store, returns a promise resolving to the enhanced store. The promise resolves once its initial state has been set from the primary store.

Parameters:

  • store (Store) Store to enhance.

Returns: (Promise<SyncStore>) Promise resolving to replica store.

Types

SyncStore

Enhanced Unistore store, including dispatch function.

See: https://github.com/developit/unistore#api

store.dispatch

Dispatch an action, applying the object result as a patch on the current store state.

Parameters:

  • action (string) Action name.
  • ...args (...any) Action arguments.

Browser Support

Unistore Browser Sync is written and distributed using modern JavaScript, including ES Modules. Browser support for these features is quite good, and you should expect no issues in browsers which have been updated at least once since 2017. Specifically, this includes Chrome versions 61 and newer (September 2017) and Firefox 60 and newer (May 2018), and Edge 16 and newer (October 2017). If you need to support older versions of these browsers, you can consider to transpile the module as part of your application's build process.

The sync implementation relies on the browser.runtime interface. Consult the MDN browser compatibility chart for detailed information about browser support. Specifically, Unistore Browser Sync uses runtime.onConnect, runtime.connect, and runtime.Port. You should not expect to have any issues when targeting reasonably up-to-date browsers.

License

Copyright 2019 Andrew Duthie

Released under the MIT License.