#04 Angular files and folder structure| Getting Started with Angular | A Complete Angular Course

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ม.ค. 2025

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

  • @cyex4311
    @cyex4311 10 หลายเดือนก่อน +15

    This is 1000% better than any of the Angular reference materials I get from my class. I appreciate the "no stone left unturned" approach. Very thorough.

  • @mrunalwaghmare
    @mrunalwaghmare ปีที่แล้ว +2

    Best video sir crystal clear explanation thank you

  • @sherlocksummer6284
    @sherlocksummer6284 9 หลายเดือนก่อน +2

    Thank you for nice Angular course

  • @freemancity2518
    @freemancity2518 ปีที่แล้ว +1

    Great Tutorial ! You deserve more recognition

  • @utkarshtripathi6682
    @utkarshtripathi6682 4 หลายเดือนก่อน +2

    FYI ... Starting with Angular 14, it is no longer strictly necessary for an Angular application to have modules. Angular introduced standalone components, which can function independently without being declared within a module.

  • @smrutikhuku
    @smrutikhuku 11 หลายเดือนก่อน +1

    Great tutorial, very well explained!

  • @dr.faithadhiambo254
    @dr.faithadhiambo254 10 หลายเดือนก่อน

    Thank you sir for this detailed elaboration on the file and folder structure!

  • @ccjx_space
    @ccjx_space 10 หลายเดือนก่อน

    Teacher explains a lot of details I didnt know before

  • @k3nguyenvandiep923
    @k3nguyenvandiep923 ปีที่แล้ว +5

    Your explanation of the Angular 16 is great.
    It would be appreciated if you could update to Angular 17.
    Thanks

    • @dr.faithadhiambo254
      @dr.faithadhiambo254 10 หลายเดือนก่อน +1

      There is no much difference, the same knowledge can be applied to Angular 17 coz that's what am using currently and I find this lecture too useful

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

      @@dr.faithadhiambo254 what about that 17 doesnot use modules ? should i follow him using 17 or downgrade to 16 ?

    • @dr.faithadhiambo254
      @dr.faithadhiambo254 6 หลายเดือนก่อน

      @@abdullahalrawi1491 just follow him...Angular 17 uses modules too but you have to specify so when creating a new project. Use this command : ng new project-name --no-standalone --routing (This will enable use of modules and add routing to your project)

    • @dr.faithadhiambo254
      @dr.faithadhiambo254 6 หลายเดือนก่อน

      @@abdullahalrawi1491 Just follow along....you don't have to downgrade. But in the latest versions of Angular from 17 onwards you have to specify the use of modules when creating a new project. Use the command: (ng new project-name --no-standalone -- routing) This will create a project that uses modules and has routing

  • @shrirangjoshi6981
    @shrirangjoshi6981 9 หลายเดือนก่อน

    Thank you sir for this great course!!!

  • @MuhammadUsman-ok5vs
    @MuhammadUsman-ok5vs ปีที่แล้ว +2

    Great series very informative

  • @satepestage3599
    @satepestage3599 4 หลายเดือนก่อน

    You have taught me a lot thank you

  • @abirpaul9027
    @abirpaul9027 ปีที่แล้ว +1

    Great course thanks for sharing your knowledge.I have subbed

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

    great explanation

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

    I tried to find more courses on your site but not able to. Can you please share the right URL for procademy. Thank you. Lectures are very very knowledgeable

  • @cse8617
    @cse8617 10 หลายเดือนก่อน

    Day 1 of learning angular ❤

  • @manirathinam4103
    @manirathinam4103 4 หลายเดือนก่อน

    I get public folder instead of assets.
    That public folder s outside src.
    If I try to access files in public in browser using url means its not accessible

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

    what theme and font do you use in the code editor ?

  • @footballdata3
    @footballdata3 ปีที่แล้ว +1

    yu got my subscription

  • @SenthilKumar-g3y
    @SenthilKumar-g3y 5 หลายเดือนก่อน

    Thank you, Manoj, for your video. I have started learning Angular, When I download Angular 18 version I don't see asset folder in Angular project.

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

      Angular 18 has been updated and by default it creates a standalone project. Please use following ng command to create a standard Angular project: ng new project-name --no-standalone

  • @RangaswamyJD
    @RangaswamyJD 4 หลายเดือนก่อน

    i just started my angular learning and how can i practice with your code as i dint see any resources attached with videos

  • @divyap.p1991
    @divyap.p1991 11 หลายเดือนก่อน

    Thank you so much ❤

  • @atharvsingh6901
    @atharvsingh6901 ปีที่แล้ว +2

    hi sir, i appreciate ur efforts for making a contribution to the coding community. but i want to add something that you also provide the valuable notes along with the videos so that we can recall/ revise from time to time. if we can't recall what we have learnt by investing so many hours in the videos, then there's no point we can benefit from it. it's not possible to watch videos every time when there's a need to recall. please also provides notes with code examples. so that we can stay connected with it from time to time.

  • @sreekanthreddyu
    @sreekanthreddyu ปีที่แล้ว +3

    Somehow 'assets\images\Capture.jpg' image not loading for me.

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

    total how many hours course is this??

  • @winwinindiamyindia9980
    @winwinindiamyindia9980 ปีที่แล้ว

    why app.module.ts file is not generated when we creates new project using command ng new in Angular 17 ... in such case where should be mentioned the nested components

    • @procademy
      @procademy  ปีที่แล้ว +2

      In Angular 17, by default a component is standalone. So app.module is not required. I the future lectures of this course, I will cover standalone components. Then it will become more clear.

  • @ksas323
    @ksas323 8 หลายเดือนก่อน

    thank you

  • @sangameshtumbagi6356
    @sangameshtumbagi6356 ปีที่แล้ว +1

    sir please give a assignment what you teach in the videos after end of the video.

  • @Manojkumar-vl6hi
    @Manojkumar-vl6hi 8 หลายเดือนก่อน

    I am unable to see application module.ts folder in angular 17 project, may i know reason

    • @procademy
      @procademy  8 หลายเดือนก่อน

      Angular 17 has standalone components by default which do not require module.ts file. If you want to create an Angular 17 project with module file, use --standalone with ng new cli command: ng new proj-name --standalone.

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

    i dont have the assests file why sir?

  • @Moath268
    @Moath268 9 หลายเดือนก่อน

    thanks man

  • @MehediKazi-p6p
    @MehediKazi-p6p 8 หลายเดือนก่อน

    sir can i learn it for angular 17

  • @AshishYadav-ql3up
    @AshishYadav-ql3up ปีที่แล้ว

    done with lecture 4
    day 1/35

  • @RangaswamyJD
    @RangaswamyJD 4 หลายเดือนก่อน

    Where i can get the code you have written to practice

    • @procademy
      @procademy  4 หลายเดือนก่อน

      For this first section where we are creating a new Angular project, there is no source code shared as it is just the starting point. For coming sections, you will find all the required resources.

  • @Zainmalik292
    @Zainmalik292 ปีที่แล้ว

    i am just starting to learning to Angular but in lattest Angluar 17 version app.module.ts and other file is changes i am little bit confused what will i do now please explain 🙄
    procademy

    • @yarutiun
      @yarutiun ปีที่แล้ว

      yes! I am also very confused about this, how do I link my code now?

    • @shivalikakamboj8391
      @shivalikakamboj8391 ปีที่แล้ว

      Hi zain you can install the angular 16 version and continue your learning

  • @Mr.gameBoy-c6e
    @Mr.gameBoy-c6e ปีที่แล้ว

    awesome

  • @staffordnelson9053
    @staffordnelson9053 11 หลายเดือนก่อน

    Thank you!

  • @Harsh_ptct
    @Harsh_ptct 11 หลายเดือนก่อน

    thank you sir

  • @suresranathunga
    @suresranathunga ปีที่แล้ว +1

    💙💙

  • @marysony7018
    @marysony7018 9 หลายเดือนก่อน

    I didnt get any app.module folder

    • @procademy
      @procademy  9 หลายเดือนก่อน

      You might be using Angular ver. 17. While creating the project use: ng new project-name --no-standalone.

    • @fieryferret
      @fieryferret 9 หลายเดือนก่อน

      Unfortunately, they made this tutorial using the older modular method, even though standalone components are the new standard. Standalone components do not use NgModule or create module.ts files.

  • @laluprasad3775
    @laluprasad3775 ปีที่แล้ว

    Sir please.notes

  • @laluprasad3775
    @laluprasad3775 ปีที่แล้ว

    Sir please sir i want notes what u explained in videos , please sir i want pds please provide ,it. Usefull for interview,if u give me notes ,i can easily get job sir , please sir ,realy i am saying i learn lot from TH-cam channel i love u

    • @GianGamingMLBB
      @GianGamingMLBB ปีที่แล้ว +2

      you must be the one to create that notes.. all of the information is the video

    • @lijolukose6965
      @lijolukose6965 ปีที่แล้ว +2

      @@GianGamingMLBB exactly

    • @JainishLimbachiya
      @JainishLimbachiya ปีที่แล้ว +3

      @laluprasad3775
      Did you prepared the notes it's been 3 weeks already, I am waiting

    • @GianGamingMLBB
      @GianGamingMLBB ปีที่แล้ว

      @@JainishLimbachiya HAHA