1.1.1 • Published 4 years ago

irish-pub-sub v1.1.1

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

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 😅

1.1.1

4 years ago

1.1.0

4 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago