Optimizing an Angular application - Minko Gechev

Поділитися
Вставка
  • Опубліковано 3 лис 2024

КОМЕНТАРІ • 51

  • @masterlup
    @masterlup 5 років тому +23

    +1 for live coding. This takes some balls.

  • @nhatne5555
    @nhatne5555 2 роки тому

    I love it, thanks for your sharing

  • @idanguttsait
    @idanguttsait 6 років тому +4

    The official release announcement was a serious Silicon Valley move... GJ!

  • @d4lep0ro
    @d4lep0ro 5 років тому +16

    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 роки тому +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.

  • @JuanPablodelaTorre
    @JuanPablodelaTorre 3 роки тому +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.

  • @popxkorn81
    @popxkorn81 6 років тому +3

    Very well presented! Easy to understand and follow! Thank you for this! Please do more presentations/teaching :-)

  • @lllllllllllllllili
    @lllllllllllllllili 6 років тому +4

    best talk on this conf

  • @蔡伯亮
    @蔡伯亮 6 років тому +4

    Thanks, this is the best practices I ever seen before

  • @Nitinjashaiwal
    @Nitinjashaiwal 5 років тому +1

    elaborate the optimization by you is awesome. Thanks a lot

  • @arpanpatel5680
    @arpanpatel5680 4 роки тому +1

    Very informative and helpful

  • @MitchTantau
    @MitchTantau 6 років тому +3

    thank you so much this is wonderful

  • @DmitrySharabin
    @DmitrySharabin 5 років тому +1

    Excellent explanation! Thank you.

  • @robertbryan6485
    @robertbryan6485 6 років тому +1

    Awesome talk, thanks!

  • @dovewingKor
    @dovewingKor 6 років тому

    오호~ 흥미롭게 잘 봤어요 감사합니다.

  • @maveraa
    @maveraa 6 років тому +2

    I couldn't understand the reason using immutable js. The rest was pretty clear. thank you

    • @mgechev
      @mgechev 6 років тому +18

      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 років тому +1

      Now, it's fully clear. Thank you so much ;)

    • @mgechev
      @mgechev 6 років тому +1

      cev the theme is Nord with Fira Code font.

    • @ksaweryglab
      @ksaweryglab 6 років тому

      @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.

  • @evolveplatform8021
    @evolveplatform8021 6 років тому +1

    Really helpful and well presented

  • @ТирионЛаннистер-ц1ф
    @ТирионЛаннистер-ц1ф 5 років тому +2

    using trackBy won't help?

  • @AakashGoplani
    @AakashGoplani 3 роки тому

    Best 💯

  •  6 років тому +1

    yo.... !
    thank you

  • @ashishkalra9438
    @ashishkalra9438 4 роки тому

    Awesome

  • @mojo1053
    @mojo1053 5 років тому +1

    Is there a way we can reduce module load time during application Load? Bootstrapping the application takes around 4000 ms.

    • @ttma1046
      @ttma1046 5 років тому

      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.

  • @cedricblaser7079
    @cedricblaser7079 4 роки тому

    very good persentation

  • @vivekr.k7950
    @vivekr.k7950 6 років тому

    awesome

  • @mariokrstevski8836
    @mariokrstevski8836 6 років тому

    Does anyone has the code of the presentation, before and/or after improving the code?

  • @yanweiwang2515
    @yanweiwang2515 6 років тому +1

    What happen if deleting one item, cause the list rerendering?

    • @mgechev
      @mgechev 6 років тому +1

      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

  • @ankush3707
    @ankush3707 3 роки тому

    anyone has the code for unoptimized and optimized app

  • @topratiksharma
    @topratiksharma 3 роки тому

    what is that operator used in place of === ? is anyone aware ?

  • @markgoho
    @markgoho 6 років тому +1

    Why is the fibonnaci function not in the class?

    • @SebaKerckhof
      @SebaKerckhof 6 років тому +3

      Why would it? It uses no state of the class object and is not related to the class' purpose.

    • @蔡伯亮
      @蔡伯亮 6 років тому

      it's static function so can pull out of class

    • @EugeneGuryanov
      @EugeneGuryanov 5 років тому

      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 роки тому +1

      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 ;)

  •  3 роки тому

    optimize angular application == port it to react

    • @Almighty_Flat_Earth
      @Almighty_Flat_Earth 2 роки тому +1

      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