@jameslnewell/observable
v1.5.0
Published
A super simple and light-weight observable implementation.
Downloads
97
Readme
@jameslnewell/observable
A super simple and light-weight observable implementation.
Installation
yarn add @jameslnewell/observable
Usage
const {create, map, pipe} from '@jameslnewell/observable';
const numbers = (ms = 1000) => create(subscriber => {
let count = 0;
const handle = setInterval(() => subscriber.next(count++), ms);
return () => clearInterval(handle);
});
const letters = pipe(map(number => String.fromCharCode(65 + number)))(numbers())
const subscription = letters.subscribe({
next: data => console.log(data),
error: error => console.error(error),
completed: () => console.log('completed')
});
subscription.unsubscribe();