In this chapter, our focus was on learning about Angular CLI and how it helps us speed up application development in Angular. We saw how Angular CLI provides us with commands for generating an application and its components, services, pipes, and modules. We then delved deeper into the Angular CLI commands and looked at various optional flags which provide flexibility to configure our application.
We also saw the features of Angular CLI which help us manage the build for the application in both dev and production environments, serve the application on the local server for testing, linting to help us manage best practices, and testing, to provide us with tools to write and run a test on our application.
Our application is currently a web application which can be accessed on all platforms, but if we want to convert our application into a native mobile application, how can...