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

crosstab

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crosstab

A utility library for cross-tab communication using localStorage.

  • 0.2.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
805
decreased by-19.18%
Maintainers
1
Weekly downloads
 
Created
Source

crosstab NPM version Build Status

A utility library for cross-tab communication using localStorage.

Sauce Labs Test Status

How can I get it?

crosstab is available through npm and bower and can be installed with the following command:

npm:

npm install crosstab

bower:

bower install crosstab

What is it?

crosstab is a javascript utility library for inter-tab communication on the same domain. It offers the following features:

  • Tracks open tabs
  • Designates a master tab and updates the master tab if it closes or times out. This is useful for maintaining a single server connection across all tabs.
  • Broadcast messages to all tabs or a particular tab

Browser Compatibility

BrowserVersion Tested
IE9+
Chrome35+
FireFox30+
Safari6.1+

API

Most of the time, you will only need to do two things with crosstab, set up event handlers, and fire off events.

Broadcasts

crosstab broadcasts messages like this:

crosstab.broadcast(event, data, destination);

If a destination is not specified, the message is broadcast to all tabs, including itself.

Event Handlers

crosstab registers event handlers like this:

crosstab.on('eventName', function(message) {
    // Handle event
});

The messages received by events have the following format:

var message = {
    id: util.generateId(),    // The unique ID of this message
    event: event,             // The name of the event
    data: data,               // The data to pass
    destination: destination, // The destination tab
    origin: crosstab.id,      // The origin tab
    timestamp: util.now()     // The time the message was created
};

The event will not fire if the destination is present and differs from the id of the current tab.

Why was it made?

I wanted to be able to have robust cross tab communication for the purpose of resource sharing (such as websockets). Though there are some libraries which have a similar goal, they all had subtle issues. This library aims to be the most correct it can be for supported browsers. This library was created with inspiration from the excellent intercom.js library, and addresses several of it's shortcomings:

  • intercom.js doesn't implement proper locking.
  • does not guarantee that one tab holds the lock at a time (in fact this is impossible to guarantee flat out, but can be guaranteed within defined execution times).
  • locking on functions that throw will break.
  • Updates to any localStorage item will cause the locks to attempt to be acquired instead of only removals of the lock.
  • in trying to support IE8 message broadcasting in intercom.js has a race condition where messages can be dropped.
  • intercom.js leaks memory by maintaining a state of every message id received (also in an attempt to support IE8)

crosstab solves these issues by dropping support for IE8 and using a lockless system that is entirely event driven (IE8 cannot pass messages via localStorage events, which is why intercom.js requires locking, because it supports IE8).

Keywords

FAQs

Package last updated on 23 Mar 2015

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