1c - Brief Introduction To Angular
1. Refactor to use lazy loaded User module
ng g module user --routing2. Move all User related folders into the user module folder

3. Remove all references to Users in App module
4. Change routes to lazy loaded routes
5. Add UserList component as feature module route
6. Declare UserList component in new User module
7. Add button on App component to navigate to UserList or Home component
8. Run the application and inspect the lazy loaded JavaScript

Extras
1. Add extra project to CLI App

2. Add npm package library to your app

Last updated