Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mobx-crosstab

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mobx-crosstab

MobX state synchronize between browser tabs

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

MobX CrossTab

A tiny MobX module to synchronize state between browser tabs.

The size is only 249 bytes. It uses Size Limit to control size.

Install

This module has peer dependencie of mobx which will has to be installed as well.

npm install mobx-crosstab

How to use

By default crossTab function accept your state and apply it to observable function of mobx so you don't need to do it by yourself. This function return observable like observable function of mobx does

import { observable } from 'mobx';
import crossTab from 'mobx-crosstab';

const store = crossTab('count', { count: 0 });

If you need to use another type of observation (ex. deep, box) you can create observable separately and pass it to the crossTab function

import { observable } from 'mobx';
import crossTab from 'mobx-crosstab';

const store = observable.deep({ count: 0 });
crossTab('count', store);

Also, you can use crossTab functions with class properties

import { observable } from 'mobx';
import crossTab from 'mobx-crosstab';

class TodoStore {
  todos = crossTab('todos', []);
}
import { observable } from 'mobx';
import crossTab from 'mobx-crosstab';

class TodoStore {
  @crossTab('todos')
  @observable
  todos = [];
}
import { observable } from 'mobx';
import crossTab from 'mobx-crosstab';

class TodoStore {
  @crossTab
  @observable
  todos = [];
}

API Reference

FAQs

Package last updated on 03 Jul 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc