Package Exports
- @angular-package/reactive
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@angular-package/reactive) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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 |