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

sync-web-storage

v0.1.4

Published

Cross domain storage

Downloads

5

Readme

sync-web-storage

Sharing a value at storage (e.g. local storage) between cross domains. You can work with same storage space from multiple client-side environments. with permissions.

This is a re-implementation of zendesk/cross-storage with a TypeScript based. Some interfaces have been changed but the basic structure is the same. Beased on the Apache-2.0 license, my purpose of this is to keep maintenance easy.

Also, in the original library it was only local storage can be used, but the sync-web-storage injects the Storage interface when creating an instance, so it is theoretically possible to also use session storage.

Overview

We need to maintain a common state across multiple domain environments for a scalable Web frontend. A web storage currently exists in the modern browser, which is ideal for keeping client state. You can use a specific shared storage between multiple domains using the postMessage API.

Hub

First, create an instance in the domain that actually holds Storage as Hub, and injects the Storage used here. Generally it is local storage.

After that, it initializes with the permissions setting(a definition of the origin and the methods) to make available.

import { SyncWebStorageHub } from 'sync-web-storage';

const syncWebStorageHub = new SyncWebStorageHub(window.localStorage);
syncWebStorageHub.init([
  {origin: /\.example.com$/,            allow: ['get']},
  {origin: /:\/\/(www\.)?example.com$/, allow: ['get', 'set', 'del']}
]);

Client

Next, in the domain to be used as Client, generate an instance using the URL of Hub's HTML file. When you executing, the iframe will be inject to the document and you can share the value using the postMessage API. This iframe element is invisible (by CSS).

import { SyncWebStorageClient } from 'sync-web-storage';

const syncWebStorageClient = new SyncWebStorageClient('https://store.example.com/hub.html');

syncWebStorageClient.onConnect().then(() => {
  return client.set('Key', 'foobar');
}).then(() => {
  return client.get('existingKey');
}).then((res) => {
  console.log(res.length); // 2
}).catch((err) => {
  // Handle error
});

Installation

$ npm i sync-web-storage

API

new SyncWebStorageHub(Storage)

Pass the Storage object and create an instance. An argument interface is Web Storage API.

// localStorage
const syncWebStorageHub = new SyncWebStorageHub(window.localStorage);

// sessionStorage
const syncWebStorageHub = new SyncWebStorageHub(window.sessionStorage);

syncWebStorageHub.init(permissions)

syncWebStorageHub.init([
  {origin: /\.example.com$/,            allow: ['get']},
  {origin: /:\/\/(www\.)?example.com$/, allow: ['get', 'set', 'del']}
]);

new SyncWebStorageClient(url, [opts])

Pass the HTML file of Hub. Optionally override the timeout setting for async processing. The initial value is 5000. In the sync-web-storage, the option is only that.

const syncWebStorageClient = new SyncWebStorageClient('https://store.example.com/hub.html');

const syncWebStorageClient = new SyncWebStorageClient('https://store.example.com/hub.html', {
  timeout: 10000,
});

syncWebStorageClient.onConnect()

A Promise will be returned when the connection with the Hub is established. This is to prevent requests from being sent before initialization.

syncWebStorageClient.onConnect().then(() => {
  // ready!
});

syncWebStorageClient.set(key, value)

syncWebStorageClient.onConnect().then(() => {
  return syncWebStorageClient.set('key', JSON.stringify({foo: 'bar'}));
});

syncWebStorageClient.get(key)

If you pass a string, you get a single value.

Unlike cross-storage, if you want to get multiple values, please pass an array of strings without increasing the number of arguments.

syncWebStorageClient.onConnect().then(() => {
  return syncWebStorageClient.get('key1');
}).then((res) => {
  return syncWebStorageClient.get(['key1', 'key2', 'key3']);
}).then((res) => {
  // ...
});

syncWebStorageClient.del(key)

Pass an array of strings if you want to delete multiple like a get method.

syncWebStorageClient.onConnect().then(() => {
  return syncWebStorageClient.del(['key1', 'key2']);
});

syncWebStorageClient.getKeys()

syncWebStorageClient.onConnect().then(() => {
  return syncWebStorageClient.getKeys();
}).then((keys) => {
  // ['key1', 'key2', ...]
});

syncWebStorageClient.clear()

syncWebStorageClient.onConnect().then(() => {
  return syncWebStorageClient.clear();
});

syncWebStorageClient.close()

Disconnect, communication is stop and remove the iframe from the client. Storage cannot be reuse after it is closed.

syncWebStorageClient.onConnect().then(() => {
  return syncWebStorageClient.set('key1', 'foo');
}).catch((err) => {
  // Handle error
}).then(() => {
  syncWebStorageClient.close();
});

License

I will publish it as Apache-2.0 license along with the original zendesk/cross-storage. The modified contents are clarified by this readme and the released source code.

http://www.apache.org/licenses/LICENSE-2.0