What's new in Angular 17

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

КОМЕНТАРІ • 19

  • @CodeWithAhsan
    @CodeWithAhsan  Рік тому +3

    What is your favorite feature about Angular v17?

  • @therehmanujjan
    @therehmanujjan Рік тому +5

    SSR & Deferred Loading 😀

  • @skyzane2735
    @skyzane2735 8 місяців тому

    Do you have video of using Vitest for Angular?

  • @tat1660
    @tat1660 Рік тому +1

    well, as new in angular framework.. i'm trying to do projects with videos in yt. Is it better to do it in the 17 version or to change it to match better with the videos? everything throws me an error and nothing shows up on localhost

    • @tat1660
      @tat1660 Рік тому

      oh.. you answered this in the video :) ..how i change the version 17 i have with somethimg else?

  • @chhikaras
    @chhikaras 7 місяців тому +1

    Having your video in the bottom right corner and content on the full screen would have been good.

  • @onlyragz
    @onlyragz Рік тому +1

    I have a folder called components with a subfolder called header which has the header files(css,ts,html), but when I go to app.component.html and write the tag , it tells me that "'app-header' is not a known element:
    1. If 'app-header' is an Angular component, then verify that it is included in the '@Component.imports' of this component.", how can I solve this

    • @CodeWithAhsan
      @CodeWithAhsan  Рік тому +3

      You have to import HeaderComponent in the ‘imports’ of the AppComponent

    • @gillesashley9314
      @gillesashley9314 11 місяців тому +1

      That is because previously, the components were auto imported, now you have to manually import them.

  • @zimcoder
    @zimcoder Рік тому +2

    Thet have borrowed the control flow from Blazor... this is similar to razor syntax.

    • @CodeWithAhsan
      @CodeWithAhsan  Рік тому

      Yep. It is similar. But there were a lot of discussions about using the @ or #.
      So it wasn’t just that they just picked it up from razor :)

    • @brewzonekeeone5724
      @brewzonekeeone5724 Рік тому

      I said the same when I heard. Which is why ng feels like a "wolf a in sheep's clothing" a bit. Their changes are not just coding patterns like 'react hooks' for example .. they are syntax and notation changes. So devs have to re-learn how to put a dot on the screen and digest all sorts of concepts to get running. Why not just say they're making a TS version of razor and be done, because it'll never feel as "js spiffy" as the others? That being said I do use (and am familiar with) the 'angular' way, so ng17 here I come.

  • @stevepottz111
    @stevepottz111 Рік тому

    Control flow deferred loading and asr

  • @laughone
    @laughone Рік тому +2

    is youtube developed using angular

    • @CodeWithAhsan
      @CodeWithAhsan  11 місяців тому

      UA-cam is built with another Google's internal framework

  • @patriksimon3551
    @patriksimon3551 Рік тому +1

    How do we modify the following code

    • @CodeWithAhsan
      @CodeWithAhsan  Рік тому +2

      Why do we need an *ngIf with an object? This condition will always be true. Oh, i believe it is for the “as” statement .
      You can do this
      @if( {..}; as vm ) {
      // use vm
      ….
      }

    • @patriksimon3551
      @patriksimon3551 Рік тому

      @@CodeWithAhsan thanks, mate!