@kramerdev/browser-tab-communication
v1.0.2
Published
A simple library for communicating between browser tabs
Downloads
1
Maintainers
Readme
Browser Tab Communication
Table of Contents
About
This project aims to utilize WebRTC for browser tab communication. The main objective is to have real time updates working with multiple tabs and windows.
Communication
The connection is done through a broadcast channel. The main idea is inspired by the Three-Way Handshake protocol, but with one more steps.
The process is as follows:
- A new tab is opened and and sends a sync message to the broadcast channel (equivalent to syn).
- The existing tabs receive the sync message, creates a data channel and send a offer message to the new tab (equivalent to syn+ack)
- The new tab receives the offer message, connects to the data channel and sends a answer message to the existing tabs (equivalent to ack)
- The tabs exchange ice candidates, the connection is established and all tabs execute the
onTabOpen
callback - After that, the tabs are represented through the
BrowserTab
class and can send and receive messages through the data channel
Setup
The package is available on npm, soon to be published as a bundle in a CDN.
To install the package, run the following command:
npm install @kramerdev/browser-tab-communication
or with yarn:
yarn add @kramerdev/browser-tab-communication
Utilization
The package exports two classes: TabsManager
(with is exported as a singleton) and BrowserTab
.
To use the package, you just need to import the TabsManager instance from the package and setup the callbacks for the onTabOpen
and onTabClose
events.
Example:
import { TabsManager, BrowserTab } from '@kramerdev/browser-tab-communication';
TabsManager.onTabOpen = (tab: BrowserTab) => {
console.log('Tab opened', tab);
tab.onMessage = (message: string) => {
console.log(`Tab ${tab.id} sent: ${message}`);
};
tab.send(`Hello, tab ${tab.id}`);
};
TabsManager
The TabsManager
class is a singleton that manages the tabs and the broadcast channel. It has the following properties:
onTabOpen: (tab: BrowserTab) => void
: Callback that is executed when a new tab is openedonTabClose: (tab: BrowserTab) => void
: Callback that is executed when a tab is closedtabs: BrowserTab[]
: List of the opened tabsbroadcast<T>(message: T)
: Sends a message to all tabs
BrowserTab
The BrowserTab
class represents a tab. It has the following properties:
id: string
: The tab idonMessage: (message: T) => void
: Callback that is executed when a message is receivedsend<T>(message: T)
: Sends a message to the tab