@rx-angular/state
Descriptionβ
@rx-angular/state
is a library designed to help developers effectively manage component-level state in Angular.
It offers a lightweight and intuitive API and automatic subscription handling, making it a perfect solution for handling state in any Angular component, service or directive.
This library offers unique features such as merging global state into local state, shared state selections, subscription-free interaction, and integration with imperative functions like component lifecycle and HostBindings.
It is an ideal alternative or complimentary library to global state management solutions like Akita, NgRx, and NgXs.
Key featuresβ
- β‘οΈ Fully reactive
- π‘οΈ Strongly typed
- π Highly performant
Introduction Videoβ
Installationβ
npm install @rx-angular/state
Usageβ
Functional Creation (NEW)β
The new functional creation API lets you create and configure RxState
in only one place.
import { rxState } from '@rx-angular/state';
import { RxFor } from '@rx-angular/template/for';
@Component({
template: `<movie *rxFor="let movie of movies$" [movie]="movie" />`,
imports: [RxFor],
})
export class MovieListComponent {
private movieResource = inject(MovieResource);
private state = rxState<{ movies: Movie[] }>(({ set, connect }) => {
// set initial state
set({ movies: [] });
// connect data source to state
connect('movies', this.movieResource.fetchMovies());
});
// select a property for the template to consume as an observable
movies$ = this.state.select('movies');
// select a property for the template to consume as a signal
movies = this.state.signal('movies');
}
The functional approach will be the new default approach for newer versions.
Read the Migration Guide for a migration guide explaining how to upgrade your codebase to the new API.
Class Basedβ
Local Provider: Use RxState as a local provider in your component to make use of Angular's Dependency Injection.
With the new inject
method:
@Component({
/*...*/
providers: [RxState],
})
export class RxStateInjectionComponent {
private state: RxState<{ foo: string }> = inject(RxState);
state$ = this.state.select();
}
With constructor based injection:
@Component({
/*...*/
providers: [RxState],
})
export class RxStateInjectionComponent {
state$ = this.state.select();
constructor(private state: RxState<{ foo: string }>) {}
}
Inheritance: Use RxState by extending it in your component.
@Component({
/*...*/
})
export class RxStateInheritanceClass extends RxState<{ foo: string }> {
value$ = this.select();
}
API overviewβ
With @rx-angular/state
, you can easily manage your component state with a range of powerful methods. You can find a detailed API documentation here.
Addonsβ
The following complimentary tools are recommended for use with RxState to improve the development experience and optimize application performance.
π @rx-angular/templateβ
Reduce the amount of boilerplate code required in templates and bring rendering performance to next level.
βοΈ @rx-angular/state/effectsβ
Reactively handle side effects, forget about the subscribe
API and potential memory leaks.
π‘ @rx-angular/state/actionsβ
Create composable action streams for user interaction and backend communication with a minimal memory footprint.
β¨ @rx-angular/cdk/transformationsβ
Simplify data structures management. Create, modify, convert arrays and objects with ease.
π¬ @rx-angular/eslint-pluginβ
Enforce best practices for building reactive, performant, and Zone-less Angular applications.
𧩠Selectionsβ
Optimize state selections and data transfer, ensure only the necessary data is transferred.
Version Compatibilityβ
RxAngular | Angular |
---|---|
^18.0.0 | ^18.0.0 |
^17.0.0 | ^17.0.0 |
^16.0.0 | ^16.0.0 |
^15.0.0 | ^15.0.0 |
^14.0.0 | ^14.0.0 |
^2.0.0 | >=13.0.0 |
^1.0.0 | >=12.0.0 |
Regarding the compatibility with RxJS, we generally stick to the compatibilities of the Angular framework itself, for more information about the compatibilities of Angular itself see the official guide.
Contributionβ
If you want to contribute to this project, please follow our guideline.
Additional materialsβ
- πΎ Research on Reactive Ephemeral State
- π Design Documents
- βοΈTutorials
- π³ Recipes
- π»Counter Demo
- π₯ Tackling Component State Reactively (Live Demo at 24:47)
- π₯ Extending Angular for the Reactive Web
- π₯ Michael explains rx-state to webdave_de (Livestream, German)