https://github.com/angular-architects/ngrx-hateoas
A library to bring hypermedia json into the NgRx Signal Store following the HATEOAS approach
https://github.com/angular-architects/ngrx-hateoas
angular hateoas ngrx
Last synced: about 4 hours ago
JSON representation
A library to bring hypermedia json into the NgRx Signal Store following the HATEOAS approach
- Host: GitHub
- URL: https://github.com/angular-architects/ngrx-hateoas
- Owner: angular-architects
- License: apache-2.0
- Created: 2024-06-04T14:09:05.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-01-13T19:29:11.000Z (about 2 months ago)
- Last Synced: 2026-01-13T21:38:52.499Z (about 2 months ago)
- Topics: angular, hateoas, ngrx
- Language: TypeScript
- Homepage:
- Size: 3.02 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- fucking-awesome-angular - ngrx-hateoas - A library to bring hypermedia json into the NgRx Signal Store following the HATEOAS approach. (State Management / NgRx)
- awesome-angular - ngrx-hateoas - A library to bring hypermedia json into the NgRx Signal Store following the HATEOAS approach. (State Management / NgRx)
README
# NGRX Hateoas
A library to bring hypermedia json into the ngrx signal store following the HATEOAS approach to make it easily useable within Angular.
## Repo Usage
The repository provides the library itself, a playground app and a dummy backend which provides some Hypermedia Web APIs.``
To run the playground app clone the repository and run an `npm install`. Then start the backend with `npm run server` and the playground app with `npm start`.
## Playground applicaiton
Use and review the playground application inside the repository to understand how to use the library. Also you can review the http responses and requests in the browser network tab to get an impression of how hypermedia json can look like.
## Lib Usage
The library is available as npm package here: https://www.npmjs.com/package/@angular-architects/ngrx-hateoas
## Documentation
Find the documentation here: https://angular-architects.github.io/ngrx-hateoas/
## Real World Sample Application
There is a sample application [Fancy.ResourceLinker.Sample](https://github.com/fancyDevelopment/Fancy.ResourceLinker.Sample) which demonstrates end to end real world usage of hypermedia in Angular and also some other aspects of a real wold system.