This project was generated with Angular CLI version 15.0.1.
Watch the conference here => https://www.youtube.com/watch?v=M65J8pSqU14
There are three branches:
- main
- this branch shows the typical NgRx setup you're probably familiar with using create functions (e.g.
createAction
,createSelectors
) - module-based, SCAM (Single Component Angular Module) architecture
- new-apis
- this branch shows the implementation of the of the
createActionGroup
andcreateFeature
APIs - module-based
- standalone
- this branch shows what NgRx looks like in the new standalone architecture
- registers root store with
provideStore
- registers feature store using route-based providers and the
provideState
andprovideEffects
APIs - shows how to bootstrap your
AppComponent
instead ofAppModule
- Use functional interceptor and register it with
provideHttpClient()
and thewithInterceptors
APIs