Socket
Socket
Sign inDemoInstall

@rx-signals/store

Package Overview
Dependencies
Maintainers
1
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rx-signals/store

Reactive effects management with behaviors and event streams


Version published
Weekly downloads
21
increased by250%
Maintainers
1
Weekly downloads
 
Created
Source

@rx-signals/store

Reactive state and effects management

Installation

npm install --save @rx-signals/store

Dependencies

RxJs is the one and only peer dependency. You need a version >6.4.0 (so 7.x is also perfectly fine) in your project.

License

MIT

What is it?

rx-signals is a library for the MVU (Model-View-Update) pattern.

It is however not limited to MVU, but can be used in all architectures that would benefit from its features:

  • State Management
    • Global and/or local
  • Reactive Programming
    • High-level abstractions over RxJs (you can still go as low as you want)
  • Effects Management
    • Clean side-effect isolation
    • Mock-less testing of your application logic
  • An alternative to Redux, NgRx or other MVU-libs
    • Less boilerplate / More DRY
    • More abstractions / reusability

Though it heavily relies on RxJs, this lib is not Angular-specific. You can (and should) also use it in any other context where you have RxJs at your disposal!

rx-signals itself is implemented with TypeScript and therefore naturally comes fully typed (in case you're using it with TS).

High-level overview

This lib comes with a

  • Store-API for
    • State/Effects-management based on the RP (reactive programming) concepts of events and behaviors (generalized as signals)
    • Reactive dependency injection
  • Signals-Type as
    • Encapsulation/Abstraction-layer for signal-composition
  • SignalsFactory-Type and utility functions as
    • Abstraction-layer over the Signals-Type for high-level composition and DRY architecture
  • EffectSignalsFactory as
    • SignalsFactory-implementation that covers side-effect-scenarios, encapsulating and abstracting away all the pitfalls and possibilities to shoot yourself in the foot.

Getting started

The impatient reader may skip the terminology part and head on to Directions.

Terminology

What does rx-signals mean anyway? Well the rx stands for reactive extensions, so it's the same rx as in RxJs. The term signals is lent from the world of functional reactive programming (FRP), though rx-signals features reactive programming (RP). You can skip to the definition of signals in RP, if you're not really interested in the actual difference between FRP and RP:

In FRP, there are two kinds of signals:

  • Events:
    • Signals of values that occur at discrete points in time
    • So functions of time that may or may not yield a value
    • An event can depend on several conditions (e.g. other signals)
  • Behaviors:
    • Signals of dynamic values over continuous time
    • So functions of time that alwayas yield a value
    • A behavior can depend on other behaviors and/or events

The FRP-guys may pardon me for having over-simplified a bit. If you're interested in an exact definition, here you can start (though the above definition better resembles RT-FRP, so the original paper is really just a start).

We're however not interested in the continuous world of FRP, but instead we're working with programs that change in discrete steps, which brings us to RP (in RP the signals are not functions of time, but only of ordered signals they depend on). This is really confusing, because actually in RP, we're making use of functional programming a lot! It's just that the term FRP is reserved for the thing where behaviors are real functions of continous time. Don't worry, if this is confusing or even if you still have no idea what I'm talking about. At least if you're already familiar with RxJs (which is a RP-library), it's going to become much more clear next.

The FRP-definitions of events and behaviors translate to the following definitions for RP:

  • Event-streams:
    • Value-streams that have no current value
    • Publish values (events) to subscribers at discrete points of time
    • Can depend on other event-streams and/or behaviors
  • Behaviors:
    • Value-Streams that always have a current value (though possibly lazy)
    • Current value can change at discrete points in time (published to subscribers)
    • Can depend on other behaviors and/or event-streams

So an RxJs example for behaviors would be a BehaviorSubject, while an example for event-streams would be Subjects. Thus, in RxJs-world you can translate signal as observable. (Now that we arrived at RxJs terminology: another difference between FRP and RP is that in RP, a signal can simply end, hence observables can complete.)

Directions

You should start with my introduction to MVU, State Management, Reactive Programming and Effects Management, if

  • you don't know what any of these terms mean
  • you like to understand the basis for the rx-signals architecture
  • you think State Management is only about having a global state and how to modify it
  • you think you're doing RP, just because you're using something like RxJs (no, you're not)
  • you think Effects Management is only about managing async processes (like http calls)
  • you don't know that all these things are tied together

Otherwise, you may start with Using rx-signals. Where necessary, it will still link to the corresponding passages of the formerly mentioned introduction.

The API-documentation (as generated from the doc strings) can be found here

An introduction for people with NgRx background can be found here

Keywords

FAQs

Package last updated on 13 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc