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

@foundit/broadcasterjs

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@foundit/broadcasterjs

A simple yet powerful pub/sub pattern javascript event bus

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

broadcasterjs

A simple yet powerful pub/sub javascript event bus
  • easy to use

  • framework agnostic

  • minimal footprint

  • optimised for SPA applications

  • unintrusive as a dependency

  • no own dependencies

  • Here you can report issues or contribute

  • Demo app available

  • Source code of the demo app


Usage

No need to initialize separately. Import the 'broadcast' factory function and use to your hearts content.

npm install @foundit/broadcasterjs

import { broadcast } from '@foundit/broadcasterjs'

START A SUBSCRIPTION IN A REACT COMPONENT
useEffect(() => {
  return broadcast.on(['MYBROADCAST-ID', myFlagEmittedCallbackFunction])
}, [myFlagEmittedCallbackFunction])

broadcast.on() returns a unsubscribe function which comes in handy when you want to cleanup on component unmount. If your listener handler function does not depend on the React component it is instanciated, in you can of course omit the return to make it persist.

START SUBSCRIPTION VANILLA JS

.on - start a subscription.

const off() = broadcast.on([
  'MYBROADCAST-ID',
  ({ detail }) => {
    document.body.append(detail + ' ')
  },
])

.once - start a subscription but cancel subscription after first emission.

const off() = broadcast.once([
  'MYBROADCAST-ID',
  ({ detail }) => {
    document.body.append(detail + ' ')
  },
])
END SUBSCRIPTION

Call the return function to cancel a subscription.

off() // Use the subscribers return function.
PUBLISH IN REACT & VANILLLA JS (place anywhere)

Publish (emit) an event with a string payload.

broadcast.emit('MYBROADCAST-ID', 'Hello world')
TO VISUALLY INSPECT
  • Click elements tab i chrome devtools,
  • Select event-listeners tab in second pane.
  • Active listeners begin with 'broadcast-' + flag name in uppercase. Expand each listener to see each unique subscriber.
TO DEBUG

Add ?debug=broadcasterjs to your url and open your devtools console. Normally it shold be enough with inspecting comment node as described above.

ADVANCED

The broadcaster functions on,once takes an optional third value and emit takes an optional third argument in the form of a settings object.

{
  debug: boolean (false)
  debugGlobal: boolean (false)
  allowDoublettesSubscribers: boolean (false)
  useLatestSubscriberScope?: boolean (false) // <- internal use
  suppresDebug?: boolean (false) // <- internal use
}

Change log

v 1.1.2 The common js version was not previously updated and did not return the unsubscribe function. It would then still behave as pre v1.1.0. v 1.1.1 v 1.1.0 The subscribe functions 'on' and 'once' now return a unsubscribe function (no arguments) that is much more user friendly than the previous off function. 'off' is still available but removed from the documentation.

Commands

Develop: yarn start Compile typescript: tsc Build out esm/cjs dist: npm run build Publish to npm: npm publish --access=public

Keywords

FAQs

Package last updated on 24 Sep 2023

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