December 2017
Beginner
372 pages
10h 32m
English
There are a lot of steps that are executed when Angular CLI builds an application, steps which may differ based on whether we are building an application in dev mode or production mode. We may want to consider bundling, minification, and tree-shaking (the process of removing all the dead code when building) as some of the aspects when building in production mode, whereas when in dev mode, our focus will be on debugging and code efficiency.
Building an application consists of compiling the application to an output directory, bundling the application, and optimizing in the case of production builds.
The Angular CLI provide options to manage these differences.
Read now
Unlock full access