Skip to content

If all you need is just a stream (RxJS Subject). Very lightweight (1.5Kb gzipped) and tree-shaking friendly.

Notifications You must be signed in to change notification settings

pavvell/rxstream

Repository files navigation

RxStream

If all you need is just a stream (RxJS Subject). Very lightweight (1.5Kb gzipped) and tree-shaking friendly.

Installation

Using npm:

$ npm i -g npm
$ npm i --save rxstream

Documentation

Documentation

Example

import { Subject } from 'rxstream';

let stream$ = new Subject();
stream$.subscribe(value => console.log(value));
stream$.next(1); // 1
stream$.next(2); // 2

Tree-shaking

To perform better tree-shaking, import what you need from its local module, for example:

import { Subject } from 'rxstream/es5/subjects/subject';
import { merge } from 'rxstream/es5/operators/merge';

About

If all you need is just a stream (RxJS Subject). Very lightweight (1.5Kb gzipped) and tree-shaking friendly.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published