Angular πŸ‡ΊπŸ‡¦ - practical notes
1.63K subscribers
1.6K photos
1 file
532 links
Angular - practical notes

This group is for posting practical notes for Angular developers. Mostly all posts are for quick implementation https://t.me/angular_practical_notes (Commenting on posts only in ENG and UA langs here). Welcome!
Download Telegram
⚠️ Any RxJs stream can trigger an Effect

#angular #ngrx

βœ… Link: https://christianlydemann.com/ngrx-industry-best-practices/
πŸ‘1
πŸ€“ NgRx Action Group Creator

#angular #ngrx #createActionGroup

🚩 > NgRx v13

βœ… Article link: https://dev.to/ngrx/ngrx-action-group-creator-1deh
πŸ“„ "Goodbye NgRx Facades. Hello Standalone Functions"

#angular #ngrx

Let’s list out the benefit of standalone functions:

-- Decouple tight dependency between the component and the store.
-- Simplifies CRUD operation with the store, by providing simple interfaces for the component to use to interact with the store.
-- Reusability!
-- No need to create a service(facade) to encapsulate
NgRx logic.
-- Stand alone functions are not tied to a class, meaning each can be imported and used individually.
-- Reduces the need to inject multiple facade dependencies.


βœ… Article link: https://javascript.plainenglish.io/goodbye-ngrx-facades-hello-standalone-functions-7b7606c01659
πŸ”₯2