JSPM

@angular-package/reactive

2.0.1-beta
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 23
  • Score
    100M100P100Q52817F
  • License MIT

Automatize process of creating some rxjs features

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

npm version Known Vulnerabilities GitHub license

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