У нас вы можете посмотреть бесплатно Angular aot vs jit или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In this video we will discuss Ahead-of-Time compilation and Just-in-Time compilation in Angular. Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help. / @aarvikitchen5572 In Angular we have 2 models of compilation JIT - Just-in-Time Compilation : JIT compilation as the name implies, compiles the application Just-in-Time in the browser at runtime. AOT - Ahead-of-Time Compilation : AOT compilation compiles the application at build time. By default, with the development build we get JIT compilation. This is how it works. The application code along with the angular compiler is downloaded by the browser. At runtime, when a request is issued to the application, the JIT-compiler in the browser compiles the application code before it is executed. This means our user who made that first request has to wait for the application to compile first. In our previous videos we have seen that, when we build our angular application, the following JavaScript bundles are generated. Inline Main Polyfills Styles Vendor The vendor bundle contains the compiler along with the angular framework. The compiler code is roughly half of the Angular framework. There is a tool called source-map-explorer that we can use to inspect the JavaScript bundles. This tool analyzes the source map generated with the bundle and draws a map of all dependencies. To be able to use this tool we have to install it first. To install this tool, execute the following command npm install source-map-explorer --save-dev Once we have the tool installed, if you have not done the development build yet, do the development build using the following command. ng build Once the build is complete, you will have the JavaScript bundles along with the source map files. Now execute the following command. node_modules\.bin\source-map-explorer dist\vendor.bundle.js The above command runs the source-map-explorer against the vendor bundle and we see the graph of it. Notice the angular compiler is around 45% percent of the bundle size. As this is development build and not optimised, notice the total size of the bundle is 2.19 MB. With AOT compilation the angular application is pre-compiled. So this means the browser loads executable code so it can render the application immediately, without waiting to compile the application first. This also mean with AOT, as the application is already pre-compiled, there is also no need for the browser to download the Angular compiler. As we already know, the compiler code is roughly half of the Angular framework, so omitting it dramatically reduces the application size. By default, the production build is Ahead-of-Time compiled. So there is no need to bundle up the angular compiler code in the vendor bundle. This brings down the vendor bundle size by almost 50%. In addition it is also minified, uglified and tree-shaked to remove any code that we are not referencing in our application. So the bundler size is further reduced. Now, execute the following command to generate a production build. Notice I have also turned on sourcemap option. Without the sourcemap we will not be able to use the source-map-explorer tool. ng build --prod --sourcemap true Once the production build is complete, execute the following command. Vendor bundle name in your production build may be slightly different. Change it accordingly and execute the command. node_modules\.bin\source-map-explorer dist\vendor.7e385ef294695236ffd1.bundle.js The AOT compiler also detects and reports template binding errors at build time itself. Let us understand this with an example. Include the following function HomeComponent class in home.component.ts file getText(): string { return 'Hello Pragim'; } In home.component.html include the following [div] element. Notice I have deliberately mis-spelled the getText() function name. [div [innerText]='getTex()'] Save changes, and execute the following command. This command does a development build in-memory. At the moment we are not using AOT, so we will not know about the template binding error that is introduced above. Notice at build time we do not see any errors. ng serve Text version of the video http://csharp-video-tutorials.blogspo... Slides http://csharp-video-tutorials.blogspo... Angular CLI Tutorial • What is Angular CLI Angular CLI Text articles & Slides http://csharp-video-tutorials.blogspo... All Dot Net and SQL Server Tutorials in English https://www.youtube.com/user/kudvenka... All Dot Net and SQL Server Tutorials in Arabic / kudvenkatarabic