Angular Meetup #12

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ธ.ค. 2023
  • We are happy to invite you to Angular Meetup #12!
    The event is organized by Angular.love in cooperation with House of Angular. If you want a dose of new, practical knowledge about Angular from different perspectives, come and listen on December 5 at 6PM CET - in Warsaw (Jana Kazimierza 5) and Online via TH-cam stream!
    What will be discussed?
    Here is the meetup's agenda:
    🔹**"Learn how to use Angular’s defer block to improve performance by Fanis Prodromou, Google Developer Expert**
    You will learn what the defer block is, how it works, and see practical examples of how to use it.
    🔹**"Angular 18 and beyond - a look into the future" by Krzysztof Skorupka- Angular Architect**
    While Angular 17 showcases numerous exciting features, at the same time, it appears to be just a tease of things to come. In this talk, we’ll anticipate what kind of changes we can expect in the next versions and explore why staying up to date is vital.
    As always, the most active participants will have a chance to win Angular gadget sets and books by Aristeidis Bampakos's "Angular Projects"!
    Moreover, we want to thank our community sponsors for supporting us!
    Angular Greece
    Angular Belgrad
    We Are Developers
    Google Developer Group
    Together, we create and develop an angular community 🙂
    If you want to keep up to date with all the information regarding the meetup, we encourage you to follow House of Angular's Facebook profile and angular.love social media channels.
    *The event will be held in Warsaw (Jana Kazimierza 5) & online. Talks will be conducted in English.
    🌎Meeting place:
    Online on the angular.love TH-cam channel
    / @angularlove
    Warsaw - Jana Kazimierza 5, 01-248 Warszawa | Budynek IPIPAN
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 5

  • @arashsahami5096
    @arashsahami5096 5 หลายเดือนก่อน

    Thank you for sharing.

  • @leolanese
    @leolanese 5 หลายเดือนก่อน +1

    Thanks for sharing Fanis and Krzysztof

  • @malikrajat
    @malikrajat 5 หลายเดือนก่อน

    Thanks, Fanis, I have a question, at 28:00 . I am yet not clear. It is suggested to have a single component on a page. The reason behind is ?.

    • @CodeShotsWithProfanis
      @CodeShotsWithProfanis 5 หลายเดือนก่อน

      The reason is that undesired things might happen.
      For instance, you might have two big components in the same file. Despite that, according to some business/UI needs you want to defer only one of them.
      Angular won't pick just this one component, but instead will create a chunk for everythink that this file has. This will result in a bigger chunk.
      Having the same structure (one file with two components), you might want to defer one of them and eager load the other one. The result would be to eager load both of them.
      I hope this answers your question

    • @malikrajat
      @malikrajat 5 หลายเดือนก่อน +1

      @@CodeShotsWithProfanis yes, thanks Fanis