1.1.2 • Published 8 months ago

@devhobby/tab-sync v1.1.2

Weekly downloads
1
License
ISC
Repository
github
Last release
8 months ago

tab-sync

Tab synchronizer is a library that allow you tu communicate between multiple tabs

compatibility

IE 9, Google Chrome, Mozilla Firefox, Safari, Opera and the most updated browser

install

npm i @devhobby/tab-sync --save

usage

first tab

import {TabSync} from '@devhobby/tab-sync'
const tabEmitter = TabSync()

setTimeout(() => {
	tabEmitter.sync('myEvent', { params: {<any>}, applyOriginEmitter: boolean })
}, 5000)

tabEmitter.on('myEvent', (data) => {
	console.log(data.params)
})

second tab

import {TabSync} from '@devhobby/tab-sync'
const tabEmitter = TabSync()

tabEmitter.on('hello', function (data) {
	console.log(data.params)
})

Note : tabEmitter.Sync() accept two parameters . The first param is the eventName to identify the event that will be emitted. The second param is a Object that contains two properties:

  1. params => arbitrary data that you would emit at all listeners

  2. applyOriginEmitter => this is a boolean that allow to emit also at emitterTab. default value is false.

1.1.1

8 months ago

1.1.0

8 months ago

1.1.2

8 months ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago