Just-in-Time (JiT) vs Ahead-of-Time (AoT) compilation in Angular
JIT – Compile TypeScript just in time for executing it. Compiled in the browser. Each file compiled separately. No need to build after changing your code and before reloading the browser page. Suitable for local development. AOT – Compile TypeScript during build phase. Compiled by the machine itself, via the command line (Faster). All code … Read more