More updates from the Angularv17

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 มิ.ย. 2024
  • Learn about more new and updated features in Angular 17. There are updates like making standalone the default, build tools updates with ESBUILD and Vite, dependency injection visualization, custom input transforms, and more.
    Check out our website → goo.gle/AngularDev
    Check out our blog → goo.gle/3MHphgE
    Watch more videos about Angular v17 → goo.gle/Angularv17
    Subscribe to Angular → goo.gle/Angular
    #Angular
  • บันเทิง

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

  • @Angular
    @Angular  7 หลายเดือนก่อน +6

    Check out our website → goo.gle/AngularDev

    • @Abraham.2748
      @Abraham.2748 7 หลายเดือนก่อน

      Thanks Angular team for such awesome website 🎉

    • @BabushaebAbhi
      @BabushaebAbhi 7 หลายเดือนก่อน

      Add some material Icon. It help to not use any other library for icons. Please thing about this point. You guys are working awesome. ❤❤ thank alot.

  • @rahulv5147
    @rahulv5147 7 หลายเดือนก่อน +6

    glad angular has brought about these changes, looking forward to further improvements

  • @mahdikamran8061
    @mahdikamran8061 7 หลายเดือนก่อน +7

    Thank you.
    Thank you for this release.
    your team is awesome.

  • @BrezzaLover
    @BrezzaLover 7 หลายเดือนก่อน +16

    I need a proper testcase or scenerio where this standalone can be useful in a big Enterprise application

    • @CesarDemi81
      @CesarDemi81 7 หลายเดือนก่อน +3

      Anywhere! You don't need to think too much about NgModules anymore. All components are standalone and have their own imports section without having to rely on a module registrations.

    • @ThePilesos
      @ThePilesos 7 หลายเดือนก่อน +2

      @@CesarDemi81and they should occupy a half of a length of the file 😁

    • @user-ne4qr4yt4b
      @user-ne4qr4yt4b 7 หลายเดือนก่อน +2

      ​@@ThePilesosjust don't write so huge components

    • @alcfeoh
      @alcfeoh 7 หลายเดือนก่อน +6

      Here's two: 1. To lazy-load individual components instead of modules. 2. To write a lot less code than having to maintain ng-modules (with all the mess they involve: circular dependencies, etc.)

    • @kwiat5796
      @kwiat5796 7 หลายเดือนก่อน +5

      In many projects I've found giant modules with components not used anymore but not removed. They just add unnecessary size to result bundle

  • @cstmstr9812
    @cstmstr9812 6 หลายเดือนก่อน

    Thanks for your updates! BTW Somebody already made any code obfuscation with Angular 17?

  • @brightokoro7073
    @brightokoro7073 6 หลายเดือนก่อน

    Nice angular vite👍

  • @lahatraanjararavelonarivo9125
    @lahatraanjararavelonarivo9125 6 หลายเดือนก่อน

    Angular 😍😍😍

  • @ReenaHR8DOTS
    @ReenaHR8DOTS 2 หลายเดือนก่อน

    Hello Angular Team
    we are migarate our code from Angular 12 to Angular 17 and that working fine!
    we are facing the issue on update the build on server (deploye on server), one we are create the build with "ng build" and its generate the dist folder and we are try to upload dist on server but its not working
    can you made video on how to upload the build on server? or can you guide for the same?
    Thank you

  • @emmanueldavis1872
    @emmanueldavis1872 7 หลายเดือนก่อน

    Hmmm... I've gotta get through Sololearn, 😂

  • @Martinspire
    @Martinspire 7 หลายเดือนก่อน +1

    I don't really get the move towards standalone components. Having to define all your dependencies again and again, just makes it tedious and cluttered. If in some way it would help decrease the clutter for writing tests, sure go ahead but it just doesn't hold a lot of benefit imo. Especially if you create one of those standard applications that most people will use Angular for.

    • @adambickford8720
      @adambickford8720 7 หลายเดือนก่อน +3

      I think the motivation is to reduce the learning curve. What you said is true, but the upside is you don't have to understand modules and all those other pre-requisites just to produce something useful.

    • @Silky987
      @Silky987 7 หลายเดือนก่อน +3

      There are always trade offs, but one that I can think of that I do like about standalone is I can create a reusable component without having to import a shared module just to use that one component in another component/module. It does annoy me to have to import common module all the time, but again, it's a trade off.

    • @Siri0S
      @Siri0S 7 หลายเดือนก่อน

      Not a lot of benefit? NgModules are basically a black box. I keep trying to find my component's dependencies and I jump from ngmodule to ngmodule trying to figure out what goes where - it's ridiculous. Also defining providers inside routes files is sooo much cleaner than having to manage this ngmodule hell. Standalone component are a godsent gift!

    • @CesarDemi81
      @CesarDemi81 7 หลายเดือนก่อน +1

      One of the main benefits is not having to import an entire module with all the components it might contain if you're using just 1 of them. Also reduces complexity as you don't risk to have circular dependencies between modules and having to mess around on how to organize them. Overall organization is much cleaner and easier. And you hardly use that many directives and components to having to import a huge list of them and have the imports section taking half your file... Unless you're too bad at designing your components 😅

  • @CodingAbroad
    @CodingAbroad 7 หลายเดือนก่อน +2

    Is it true Angular is turning away from webpack?

    • @alcfeoh
      @alcfeoh 7 หลายเดือนก่อน

      The answer is in the video.

  • @sch2412
    @sch2412 7 หลายเดือนก่อน +5

    vite is buggy in v17. i'm finding myself needing to restart the dev server quite often. it rarely recovers from build errors. especially with scss. the old dev server was much more robust.

    • @josephmilazzo8713
      @josephmilazzo8713 7 หลายเดือนก่อน +1

      In the same situation myself. Even if it's much faster, having to restart often is very frustrating.

    • @motricalaalan6186
      @motricalaalan6186 7 หลายเดือนก่อน +1

      Same situation

    • @schankam
      @schankam 6 หลายเดือนก่อน +1

      Same, but it's just the beginning guys. It is super great that they're switching to Vite and I believe it will get as robust as the webpack builder very soon!

  • @TheSourceOfEvil
    @TheSourceOfEvil 7 หลายเดือนก่อน

    3:03 "you can even create your own transforms, the only limit is your imagination" - nope, there is one important caveat, the transform has to be a simple, pure function, so the static analysis would understand; this is pretty limiting

  • @avinashbhujan1376
    @avinashbhujan1376 6 หลายเดือนก่อน

    I think all these JS libraries are bound to die one day. They are unnecessarily complicated, have too long build times and very high initial learning curves. Something much more simpler, easier and efficient is needed.