The course begins with the fundamentals of state management and the three core principals at the heart of redux and NgRx.

This comprehensive course covers the following topics:
To get started, you need to clone the git repository:
git clone https://github.com/blove/ngrx-course.gitThe first exercise is building a simple store yourself. In order to get started with the exercise you need to checkout a specific branch within the repository. This branch contains the exercise code that you will be working on:
git checkout 01-simple-store
cd course
npm install
npm startLet's break down these commands:
git checkout command followed by the branch name: 01-simple-store.cd command to change into the course directory.npm install.If you want to skip ahead to the solution, and we do not recommend skipping exercises, you can checkout the solution branch:
git checkout 01-simple-store-complete