Creating a Module
In this lesson, we'll learn how to create a module with routing capabilities.
We'll cover the following...
Like anything else, modules can be created with the Angular CLI. It’s the preferred and recommended way to create a module. We can run the ng generate module <name>
command. The <name>
portion can be replaced with the name of the module you’d like to give.
Project overview
The project we will be working on is a simple website. We’ll have a homepage, ...