Skip to content

bratsos/irish-pub-sub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

14 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ€ Irish PubSub - 97b pubsub system


gzip size brotli size install size

1

Modern (es6) functional Pubsub system (no class, or this), weights about 97b minified + gzipped.

Install

yarn add irish-pub-sub

or with UMD

<script scr="https://unpkg.com/irish-pub-sub/dist/index.umd.js"></script>

Usage

import pubsub from 'irish-pub-sub'

const [subscribe, send] = pubsub()

const unsubscribe = subscribe('The Dreadnoughts', (val) => console.log('The Dreadnoughts: ', val)) // returns unsubscribe method
send('Dreadnoughts', 'Best band ever') // => The Dreadnoughts: Best band ever
unsubscribe() // => true

Inspired by developit/mitt

Don't use it in production ๐Ÿ˜