On the podcast, we walk through a series of changes to a sample angular 1 ui-router application. During these changes, we migrate to ui-router 1.0, then to a hybrid ng1/ng2 app, and finally migrate the app to Angular 2
This repository contains all the code shown in the podcast.
git clone https://github.com/christopherthielen/ngair-2016-07-12.git
cd ngair-2016-07-12
Each step of the process has its own branch in this repository
You can follow along with the changes by cloning this repository and checking out different branches.
After switching branches, make sure you update the npm dependencies, then run npm start
.
For example:
git checkout 2_ui-router-1.0;
npm install;
npm start;
Each branch builds off the previous. Use Github branch compare feature to see the total differences between branches or view individual commits for more granularity.