@angular-package/reactive
v2.0.1-beta
Published
Automatize process of creating some rxjs features
Downloads
605
Readme
@angular-package/reactive
Automatize process of creating some rxjs features.
- Treeshake bundle with Rollup - module bundler for JavaScript.
- AOT (Ahead Of Time Compilation) package: faster rendering, fewer asynchronous requests, smaller Angular framework download size, detect template errors earlier, better security.
- MIT License: it can be used commercially.
Packages
import '@angular-package/reactive/subject';
import '@angular-package/reactive/unsubscribe';
| Packages | Description | Status | Readme | |------------------|------------------------------------------------|-------------|--------------| | subject | Automatize process of creating observable properties in component or service. | Ready | Readme | | unsubscribe | Automatize process of unsubscribe subscriptions in component. | Ready | Readme |
Subject
import { ApSubject } '@angular-package/reactive/subject';
import { ApSubjectAsync } '@angular-package/reactive/subject/async';
import { ApSubjectBehavior } '@angular-package/reactive/subject/behavior';
import { ApSubjectReplay } '@angular-package/reactive/subject/replay';
| Package | Module | Description | Status | Readme |
|----------|-------------------|------------------------------------------------------|------------|-------------|
| | ApSubject | Decorator to automatize process of creating Subject
observable on indicated properties in component or service. | Ready | Readme |
| async | ApSubjectAsync | Decorator to automatize process of transform indicated properties in component or service to AsyncSubject
observables. | Ready | Readme |
| behavior | ApSubjectBehavior | Decorator to automatize process of creating BehaviorSubject
observable on indicated properties in component or service. | Ready | Readme |
| replay | ApSubjectReplay | Decorator to automatize process of creating ReplaySubject
observable on indicated properties in component or service. | Ready | Readme |
Unsubscribe
import { ApUnsubscribe } '@angular-package/reactive/unsubscribe';
| Module | Description | Status | Readme | |----------|------------------------------------------------------|------------|-------------| | ApUnsubscribe | Decorator to automatize process of unsubscribe subscriptions in component. | Ready | Readme |