1
Modern (es6) functional Pubsub system (no class
, or this
), weights about 97b minified + gzipped.
yarn add irish-pub-sub
or with UMD
<script scr="https://unpkg.com/irish-pub-sub/dist/index.umd.js"></script>
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 ๐