├── .gitbook └── assets │ └── image.png ├── .gitignore ├── README.md ├── SUMMARY.md ├── assets ├── 2016-11-09_17-02-23.png ├── 2017-07-25_21-00-24.jpg ├── angularessentials-img.jpg ├── default-ngrx-state.png ├── logos.png ├── material-site.png ├── redux-dev-tools.png ├── vscode.png └── workspaces-demoapp.png ├── book.json ├── chapter1.md ├── course-description.md ├── introduction.md ├── package.json ├── part-0-environment-setup.md ├── part-1-.md ├── part-1-environment-setup.md ├── part-10-ngrx-selectors.md ├── part-11-adding-nx-workspaces.md ├── part-12-entity-state-adapter.md ├── part-13-router-actions-and-effects.md ├── part-14-unit-and-e2e-tests.md ├── part-15-ci-and-deployment.md ├── part-2-angular-fundamentals.md ├── part-3-angular-services.md ├── part-3-generating-components.md ├── part-4-.md ├── part-5-thirdparty-dependencies.md ├── part-6-reactive-forms.md ├── part-7-routing-and-interceptors.md ├── part-8-angular-services.md ├── part-9-nx-state-libs.md └── resource-links.md /.gitbook/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/.gitbook/assets/image.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /assets/2016-11-09_17-02-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/assets/2016-11-09_17-02-23.png -------------------------------------------------------------------------------- /assets/2017-07-25_21-00-24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/assets/2017-07-25_21-00-24.jpg -------------------------------------------------------------------------------- /assets/angularessentials-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/assets/angularessentials-img.jpg -------------------------------------------------------------------------------- /assets/default-ngrx-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/assets/default-ngrx-state.png -------------------------------------------------------------------------------- /assets/logos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/assets/logos.png -------------------------------------------------------------------------------- /assets/material-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/assets/material-site.png -------------------------------------------------------------------------------- /assets/redux-dev-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/assets/redux-dev-tools.png -------------------------------------------------------------------------------- /assets/vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/assets/vscode.png -------------------------------------------------------------------------------- /assets/workspaces-demoapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/assets/workspaces-demoapp.png -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/book.json -------------------------------------------------------------------------------- /chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/chapter1.md -------------------------------------------------------------------------------- /course-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/course-description.md -------------------------------------------------------------------------------- /introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/introduction.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/package.json -------------------------------------------------------------------------------- /part-0-environment-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-0-environment-setup.md -------------------------------------------------------------------------------- /part-1-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-1-.md -------------------------------------------------------------------------------- /part-1-environment-setup.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-10-ngrx-selectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-10-ngrx-selectors.md -------------------------------------------------------------------------------- /part-11-adding-nx-workspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-11-adding-nx-workspaces.md -------------------------------------------------------------------------------- /part-12-entity-state-adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-12-entity-state-adapter.md -------------------------------------------------------------------------------- /part-13-router-actions-and-effects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-13-router-actions-and-effects.md -------------------------------------------------------------------------------- /part-14-unit-and-e2e-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-14-unit-and-e2e-tests.md -------------------------------------------------------------------------------- /part-15-ci-and-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-15-ci-and-deployment.md -------------------------------------------------------------------------------- /part-2-angular-fundamentals.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part-3-angular-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-3-angular-services.md -------------------------------------------------------------------------------- /part-3-generating-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-3-generating-components.md -------------------------------------------------------------------------------- /part-4-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-4-.md -------------------------------------------------------------------------------- /part-5-thirdparty-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-5-thirdparty-dependencies.md -------------------------------------------------------------------------------- /part-6-reactive-forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-6-reactive-forms.md -------------------------------------------------------------------------------- /part-7-routing-and-interceptors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-7-routing-and-interceptors.md -------------------------------------------------------------------------------- /part-8-angular-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-8-angular-services.md -------------------------------------------------------------------------------- /part-9-nx-state-libs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/part-9-nx-state-libs.md -------------------------------------------------------------------------------- /resource-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duncanhunter/Enterprise-Angular-applications-with-ngrx-and-nx/HEAD/resource-links.md --------------------------------------------------------------------------------