July 2018
Intermediate to advanced
420 pages
8h 46m
English
In this example, we will, so that you can see how to build applications using the Angular CLI. Even in this very basic example, we will cover the following points:
Now, let's create a module that shows us a list of beers:
ng g module beers
Note that the command ng g module is a shortcut to ng generate module <module-name>, and this command just creates the module; we need to add routes, components, and templates, and also import the beers module in app.modules.ts, at the root of the app folder. The preceding ...
Read now
Unlock full access