2.0.1-beta • Published 6 years ago

@angular-package/reactive v2.0.1-beta

Weekly downloads
250
License
MIT
Repository
github
Last release
6 years ago

@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';
PackagesDescriptionStatusReadme
subjectAutomatize process of creating observable properties in component or service.ReadyReadme
unsubscribeAutomatize process of unsubscribe subscriptions in component.ReadyReadme

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';
PackageModuleDescriptionStatusReadme
ApSubjectDecorator to automatize process of creating Subject observable on indicated properties in component or service.ReadyReadme
asyncApSubjectAsyncDecorator to automatize process of transform indicated properties in component or service to AsyncSubject observables.ReadyReadme
behaviorApSubjectBehaviorDecorator to automatize process of creating BehaviorSubject observable on indicated properties in component or service.ReadyReadme
replayApSubjectReplayDecorator to automatize process of creating ReplaySubject observable on indicated properties in component or service.ReadyReadme

Unsubscribe

import { ApUnsubscribe } '@angular-package/reactive/unsubscribe';
ModuleDescriptionStatusReadme
ApUnsubscribeDecorator to automatize process of unsubscribe subscriptions in component.ReadyReadme