Тёмный

Optimizing an Angular application - Minko Gechev 

ng-conf
Подписаться 65 тыс.
Просмотров 68 тыс.
50% 1

Опубликовано:

 

6 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 51   
@masterlup
@masterlup 5 лет назад
+1 for live coding. This takes some balls.
@idanguttsait
@idanguttsait 6 лет назад
The official release announcement was a serious Silicon Valley move... GJ!
@lllllllllllllllili
@lllllllllllllllili 6 лет назад
best talk on this conf
@JuanPablodelaTorre
@JuanPablodelaTorre 3 года назад
Very simple optimizations that are easy to implement in a simple application. But try to do the same in some of the insane corporate spaghetti I've worked with. There are people that call themselves developers that don't deserve that title. Looking forward to following these to the tee in the project I'm starting.
@d4lep0ro
@d4lep0ro 5 лет назад
one additional optimization tip could be the ngFor track by.
@timothyalcaide
@timothyalcaide 4 года назад
Yes but it is better than immutable.js ? Because i think it do the same thinks ??
@d4lep0ro
@d4lep0ro 4 года назад
They don't do the same thing. Angular keeps track of your dom elements and whenever a change is needed it will know where to apply such change. If you don't use trackBy under big ngFor loops it will remove all elements and re-insert them, which could cause bad user experience if you have complex rendering, bad performance, etc.
@user-hp3do6ot3m
@user-hp3do6ot3m 6 лет назад
Thanks, this is the best practices I ever seen before
@nhatne5555
@nhatne5555 Год назад
I love it, thanks for your sharing
@popxkorn81
@popxkorn81 6 лет назад
Very well presented! Easy to understand and follow! Thank you for this! Please do more presentations/teaching :-)
@Nitinjashaiwal
@Nitinjashaiwal 5 лет назад
elaborate the optimization by you is awesome. Thanks a lot
@arpanpatel5680
@arpanpatel5680 4 года назад
Very informative and helpful
@user-cg4mb4mn2q
@user-cg4mb4mn2q 6 лет назад
thank you so much this is wonderful
@robertbryan6485
@robertbryan6485 5 лет назад
Awesome talk, thanks!
@DmitrySharabin
@DmitrySharabin 5 лет назад
Excellent explanation! Thank you.
@evolveplatform8021
@evolveplatform8021 6 лет назад
Really helpful and well presented
@maveraa
@maveraa 6 лет назад
I couldn't understand the reason using immutable js. The rest was pretty clear. thank you
@mgechev
@mgechev 6 лет назад
Let's suppose that EmployeeListComponent has OnPush change detection strategy. Let's also suppose that we're using JavaScript arrays for representing both lists of employees. If the AppComponent adds a new item to the sales or r&d lists, the EmployListComponent's change detection will not get triggered. The reason is that the AppComponent will not pass a new input to the EmployeeListComponent because the AppComponent will only mutate the data structure referenced by the list. After the new element has been added, Angular will check if the data input of the EmployeeListComponent has changed and it will find out that it hasn't because it'll perform a reference check (i.e. newInput === oldInput, which will equal false). How can we work around this? We need to pass a new list of employees to EmployeeListComponent's data property when we add a new employee. For the purpose, we can copy the entire list: `const newList = this.rndList.slice(); newList.push(newEmployee); this.rndList = newList`. This way, when Angular compares the previous value of the data input, with the old value, it will determine that a change has happened, i.e. it needs to trigger the change detection in EmployeeListComponent. What are the problems with this? We need to copy the entire list and allocate new memory for the new one. This is slow and inefficient. That's why we can use an instance of the list from immutable.js instead of a JavaScript array. When we push a new element to an immutable list, we will get a new list that internally reuses as much as possible from the original one. Immutable.js uses techniques from persistent data structures en.wikipedia.org/wiki/Persistent_data_structure. I hope this makes it more clear.
@maveraa
@maveraa 6 лет назад
Now, it's fully clear. Thank you so much ;)
@mgechev
@mgechev 6 лет назад
cev the theme is Nord with Fira Code font.
@ksaweryglab
@ksaweryglab 5 лет назад
@Minko - so you're saying that making a new copy of the object or array using Object.assign or object destructuring and array.slice() will take more memory than if we were using Immutable.js? How is Immutable.js handling it if you still have to assign a new value in the end to pass it to @Input param?
3 года назад
@@ksaweryglab immutable.js may use *structural sharing* of the unchanged parts of an object-tree.
@dovewingKor
@dovewingKor 5 лет назад
오호~ 흥미롭게 잘 봤어요 감사합니다.
@AakashGoplani
@AakashGoplani 3 года назад
Best 💯
6 лет назад
yo.... ! thank you
@ashishkalra9438
@ashishkalra9438 4 года назад
Awesome
@cedricblaser7079
@cedricblaser7079 4 года назад
very good persentation
@vivekr.k7950
@vivekr.k7950 6 лет назад
awesome
@user-kx8wp1fy6l
@user-kx8wp1fy6l 5 лет назад
using trackBy won't help?
@mariokrstevski8836
@mariokrstevski8836 5 лет назад
Does anyone has the code of the presentation, before and/or after improving the code?
@mojo1053
@mojo1053 5 лет назад
Is there a way we can reduce module load time during application Load? Bootstrapping the application takes around 4000 ms.
@ttma1046
@ttma1046 4 года назад
lazy loading ngmodule, dont just build everything in one ngmodule.
@Bjlasc01
@Bjlasc01 4 года назад
Look into the preload options. Their are ways to customize loading all/none/some modules upfront or on demand. You can also call to preload when a certain event fires, such as hovering over a Nav menu item.
@ankush3707
@ankush3707 3 года назад
anyone has the code for unoptimized and optimized app
@yanweiwang2515
@yanweiwang2515 6 лет назад
What happen if deleting one item, cause the list rerendering?
@mgechev
@mgechev 5 лет назад
The list would not rerender. Internally, using an IterableDiffer, Angular would discover the change and remove the list item associated with the deleted entry.
@irinakedem4051
@irinakedem4051 5 лет назад
Where can I download the code from? The link that is presented in the video is no longer working. Thanks
@topratiksharma
@topratiksharma 3 года назад
what is that operator used in place of === ? is anyone aware ?
@kavinkumar
@kavinkumar 3 года назад
Chutiya
@markgoho
@markgoho 6 лет назад
Why is the fibonnaci function not in the class?
@SebaKerckhof
@SebaKerckhof 6 лет назад
Why would it? It uses no state of the class object and is not related to the class' purpose.
@user-hp3do6ot3m
@user-hp3do6ot3m 6 лет назад
it's static function so can pull out of class
@EugeneGuryanov
@EugeneGuryanov 4 года назад
If we put fibonnaci in the class and just call it once, it will work fast out of the box without fancy libs, it's not the way to go for modern frontend
@kamalkamals
@kamalkamals 6 лет назад
as like redux in react, import immutable from react to angular, i guess react team still the best to find a good solutions !!
@Almighty_Flat_Earth
@Almighty_Flat_Earth 2 года назад
React js is a shame to JavaScript community. Governments should ban the use of this stupid library. Same functionalities can be achieved with Angular and Svelte with less frustration, so what's the point of using the stupid react js which makes web development unnecessarily complicated.? Those who use react are slaves.
@kamalkamals
@kamalkamals 2 года назад
@@Almighty_Flat_Earth yes I gree but angular is more terrible specially with performance, that s reason I already switched to sveltejs and solidjs ;)
2 года назад
optimize angular application == port it to react
@Almighty_Flat_Earth
@Almighty_Flat_Earth 2 года назад
React js is a shame to JavaScript community. Governments should ban the use of this stupid library. Same functionalities can be achieved with Angular and Svelte with less frustration, so what's the point of using the stupid react js which makes web development unnecessarily complicated.? Those who use react are slaves.
@martinmika554
@martinmika554 2 года назад
+1 for @memo decorator
Далее
Linkin Park: FROM ZERO (Livestream)
1:21:01
Просмотров 6 млн
Will A Guitar Boat Hold My Weight?
00:20
Просмотров 34 млн
Angular Performance Workshop - Manfred Steyer
42:36
Просмотров 10 тыс.
Angular at Large Organizations - Victor Savkin
25:29
Просмотров 30 тыс.
Deep dive into content projection - Eudes Petonnet
19:47
Qwik… the world's first O(1) JavaScript framework?
3:33
VS Code Can Do That - Burke Holland
20:34
Просмотров 53 тыс.
Brutally honest advice for new .NET Web Developers
7:19
Ready for Readable Code? - John Papa
16:50
Просмотров 70 тыс.
TypeScript Origins: The Documentary
1:21:36
Просмотров 285 тыс.