# rxstream

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

Latest version **1.3.4** (published 2017-11-04) · ISC license · 0 weekly downloads

## Install

```sh
npm install rxstream
pnpm add rxstream
yarn add rxstream
bun add rxstream
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.3.4 |
| Published | 2017-11-04 |
| First published | 2017-06-28 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 15 |
| Maintainers | pnesmelov |

## Links

- npm: https://www.npmjs.com/package/rxstream
- Repository: https://github.com/pavvell/rxstream
- Homepage: https://github.com/pavvell/rxstream#readme
- Issues: https://github.com/pavvell/rxstream/issues
- npm.io page: https://npm.io/package/rxstream

## Recent versions

- 1.3.4 (latest) — 2017-11-04
- 1.3.3 — 2017-11-04
- 1.3.2 — 2017-11-04
- 1.3.1 — 2017-11-04
- 1.3.0 — 2017-11-04
- 1.2.9 — 2017-08-01
- 1.2.8 — 2017-08-01
- 1.2.7 — 2017-07-31
- 1.2.6 — 2017-07-29
- 1.2.4 — 2017-07-28
- 1.2.3 — 2017-07-20
- 1.2.2 — 2017-07-20
- 1.2.1 — 2017-07-20
- 1.2.0 — 2017-07-20
- 1.1.2 — 2017-07-20
- … 3 more at https://npm.io/package/rxstream/versions

## README

# RxStream

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

## Installation

Using npm:
```shell
$ npm i -g npm
$ npm i --save rxstream
```

## Documentation
[Documentation](https://rxstream.herokuapp.com/)

## Example
```javascript
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:
```javascript
import { Subject } from 'rxstream/es5/subjects/subject';
import { merge } from 'rxstream/es5/operators/merge';
```

---
_Source: https://npm.io/package/rxstream · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
