0.7.0 • Published 10 months ago

@cxl/rx v0.7.0

Weekly downloads
21
License
Apache-2.0
Repository
github
Last release
10 months ago

@cxl/rx

npm version

Lightweight reactiveX implementation

Project Details

  • Branch Version: 0.7.0
  • License: Apache-2.0
  • Documentation: Link
  • Report Issues: Github

Installation

npm install @cxl/rx

Usage

import { of, be } from '@cxl/rx';

const obs = of('Hello World');
obs.subscribe(val => console.log(val)).unsubscribe();

// Using a BehaviorSubject
const ref = be('');
ref.filter(val => !!val).tap(val => console.log(val)).subscribe();
ref.next('Hello World');

Features

  • Lightweight
0.7.0

10 months ago

0.6.0

3 years ago

0.5.0

3 years ago

0.4.0

3 years ago

0.3.0

3 years ago

0.2.0

3 years ago

0.1.0

4 years ago

0.0.3

5 years ago

0.0.2

6 years ago