Master Standalone Components: The Ultimate Guide to Angular's Revolutionary Feature

  Рет қаралды 18,720

Web Tech Talk

Web Tech Talk

Күн бұрын

Пікірлер: 73
@fighterlife3644
@fighterlife3644 11 ай бұрын
even better than the official video talking about standalone component
@WebTechTalk
@WebTechTalk 11 ай бұрын
Thank you so much
@AnubhavGupta-l8q
@AnubhavGupta-l8q 4 ай бұрын
Reading about standalone components for the first time today and I don't need to see another video I think. Very nicely explained bro. Keep up the good work. :)
@WebTechTalk
@WebTechTalk 4 ай бұрын
Thank you so much 👍
@AmmarTheTrainer
@AmmarTheTrainer Жыл бұрын
To the point, compact , useful and full of knowledge. Thanks for the sharing this ..
@WebTechTalk
@WebTechTalk Жыл бұрын
Thank you so much.
@natarajant7711
@natarajant7711 Жыл бұрын
Excellent video covers lot of items in single video
@WebTechTalk
@WebTechTalk Жыл бұрын
Thank you
@chandnigupta9246
@chandnigupta9246 Жыл бұрын
Excellent explanation. I understood the concept very well. thanks, keep it up
@WebTechTalk
@WebTechTalk Жыл бұрын
Thank you so much 🙏
@amgadmohammed6358
@amgadmohammed6358 Ай бұрын
Great Explanation!
@WebTechTalk
@WebTechTalk Ай бұрын
@@amgadmohammed6358 Thank you 🙏
@WebTechTalk
@WebTechTalk Ай бұрын
@@amgadmohammed6358 Thank you 🙏
@emilev4560
@emilev4560 7 ай бұрын
Very neat and clear explanation, thank you
@WebTechTalk
@WebTechTalk 7 ай бұрын
Thanks a lot
@prasadmadushan
@prasadmadushan 6 ай бұрын
I love the way you demonstrate lazy loading. thanks
@WebTechTalk
@WebTechTalk 6 ай бұрын
Thank you so much
@sushantkunkekar2155
@sushantkunkekar2155 Жыл бұрын
Very well explained thanks, keep it up❤
@WebTechTalk
@WebTechTalk Жыл бұрын
Thank you bro 😊
@aparnaroychowdhury6506
@aparnaroychowdhury6506 10 ай бұрын
Best example. To the point and covered all. Thanks.
@WebTechTalk
@WebTechTalk 9 ай бұрын
Thank you so much.
@sandeep_gandham
@sandeep_gandham Жыл бұрын
Excellent topic❤ sir i understand very well bcz of this topic video i got stuck before this video now cleared the topic🥳
@WebTechTalk
@WebTechTalk Жыл бұрын
Nice to hear that. Thank you so much.
@nimeshvala6750
@nimeshvala6750 Жыл бұрын
Really good context and covered in very short video. Kudos to you. Keep it up👍
@WebTechTalk
@WebTechTalk Жыл бұрын
Thank you so much bro.
@asheeshmathur
@asheeshmathur 11 ай бұрын
Wonderful Series ...Bless You
@WebTechTalk
@WebTechTalk 11 ай бұрын
Thank you so much 🙏
@sivabalangovindaraj7803
@sivabalangovindaraj7803 Жыл бұрын
Very Good explanation 🎉 I can understand easily. Keep it up.. congratulations for 10K Subscribers 🎉😊
@WebTechTalk
@WebTechTalk Жыл бұрын
Thank you so much 😀
@psteja9917
@psteja9917 5 ай бұрын
Best explanation, thank you!
@WebTechTalk
@WebTechTalk 5 ай бұрын
@@psteja9917 Thank you
@vishal_sharma_rha
@vishal_sharma_rha 26 күн бұрын
I am migrating angular 7 to 17, and preparing for interview One interviewer asked me related stand alone component but that time I was not aware But not I am confident after watching this video
@WebTechTalk
@WebTechTalk 26 күн бұрын
Nice to hear. Thanks.
@getvivekjoshi
@getvivekjoshi Жыл бұрын
Superb video ❤
@WebTechTalk
@WebTechTalk Жыл бұрын
Thanks 🤗
@khaledkara8774
@khaledkara8774 2 ай бұрын
awesome, really appreciate, thx a lot
@WebTechTalk
@WebTechTalk 2 ай бұрын
Thank you so much
@shyamplays
@shyamplays 10 ай бұрын
Great video. Thanks.
@WebTechTalk
@WebTechTalk 10 ай бұрын
Thank you
@UnitiedByChess
@UnitiedByChess 9 ай бұрын
Nice explanation and very useful
@WebTechTalk
@WebTechTalk 8 ай бұрын
Thank you so much
@tejap7308
@tejap7308 Жыл бұрын
Your explanation is awesome bro. I understood the concept very well. Thanks a lot I have few queries. 1. In which scenarios do we need to choose standalone components and in which scenarios do we need to choose normal components? On what basis do we make this decision? 2. In future will Angular remove Modules completely? Modules doesn't have any advantages at all? 3. If modules are removed, how do we divide or modularize applications going forward? For example in a Healthcare related application, we create multiple modules like Patient Module, Doctor Module, Admin Module and group all the related components under each respective module. So, how do we do this kind of classification going forward?
@WebTechTalk
@WebTechTalk Жыл бұрын
Nice questions bro. 1. Going forward it is always good to choose standalone components. Only if your application cannot be upgraded because of any specific dependencies then you can stick to normal components. 2. There are high chances bro, because standalone components improve the performance a lot. 3. Individual standalone component itself act as a module. That is why we are importing it instead of declaring.
@tejap7308
@tejap7308 Жыл бұрын
​@@WebTechTalk​ Thanks a lot for your response and clarifying bro. Just have few more questions based on your response. Please don't mind so many questions from me :) 1. So, is it better to avoid modules going forward? 2. If standalone components act as modules, how do we group together or classify related components?
@WebTechTalk
@WebTechTalk Жыл бұрын
@@tejap7308 If your root component is going to be a standalone component, and if you are not using app module file , then it is better to avoid modules and you can maintain everything in individual standalone component. Even we can import multiple components in a standalone component. To group, we can use folders. For example, in our patient standalone component, we can import MyProfile component, MyClaim component, etc and group all components inside a single folder
@tejap7308
@tejap7308 Жыл бұрын
​@@WebTechTalkThanks a lot for clarifying bro. Your channel is best I have seen for Angular so far. Excited to see more Angular videos from you 😊
@WebTechTalk
@WebTechTalk Жыл бұрын
@@tejap7308 Thank you so much bro 😄
@ravibhojani5286
@ravibhojani5286 9 ай бұрын
awesome explanation
@WebTechTalk
@WebTechTalk 9 ай бұрын
Thank you so much 👍
@karthicktechcedence
@karthicktechcedence Жыл бұрын
Well explained
@WebTechTalk
@WebTechTalk Жыл бұрын
Thank you 🙏
@udarasan8216
@udarasan8216 10 ай бұрын
thank you greate explain
@WebTechTalk
@WebTechTalk 10 ай бұрын
Thank you 👍
@moinhasanfatta3664
@moinhasanfatta3664 11 ай бұрын
Best one. For.. New learners
@WebTechTalk
@WebTechTalk 11 ай бұрын
Thank you bro.
@syedhannan546
@syedhannan546 8 ай бұрын
well explained!!
@WebTechTalk
@WebTechTalk 8 ай бұрын
Thanks
@saiprathap9550
@saiprathap9550 6 ай бұрын
in angualr 17 do we need to use the flag to have app module , or which is the optimal way here? i created app with 17 and trying to have one module for all the packages and imported this module in stand alone compoennt ie my users component , now in routing this users component is always remaining even if we route to different Route , in routeroutlet this user selectos is staying hence is always visible on ui any solution for this ?
@WebTechTalk
@WebTechTalk 6 ай бұрын
Yes. You need to use the flag --no-standalone. But I suggest you use standalone solution. And, if you keep user component in app component, it will display in all pages. So better remove that and show it through route.
@JaffyMaglinte
@JaffyMaglinte Жыл бұрын
Now I understand thank you!
@WebTechTalk
@WebTechTalk Жыл бұрын
Thank you 🙏
@julienr8114
@julienr8114 10 ай бұрын
Take a look also to Local Change Detection
@WebTechTalk
@WebTechTalk 10 ай бұрын
Sure. I am planning to cover this after doing a video on Signals.
@Amir_OfclAcnt
@Amir_OfclAcnt 8 ай бұрын
👍
@WebTechTalk
@WebTechTalk 8 ай бұрын
Thanks
@SaiKumar-tg6ct
@SaiKumar-tg6ct Жыл бұрын
It seems angular may slowly convert to function based components as similar to react
@WebTechTalk
@WebTechTalk Жыл бұрын
I don't think so Sai. Object oriented is the advantage of angular. Dependency injection happens through the constructor. So I think Angular will stick to class based components only.
@SaiKumar-tg6ct
@SaiKumar-tg6ct Жыл бұрын
@@WebTechTalk new way of dependency injection has come since Angular 16, and route guards also has also changed to function.that's why I'm thinking so,
@WebTechTalk
@WebTechTalk Жыл бұрын
@@SaiKumar-tg6ct I will explore more on that
@raghavach7310
@raghavach7310 Ай бұрын
content is good but background music is noising
@WebTechTalk
@WebTechTalk Ай бұрын
OK, I will reduce the noise.
Angular Typed Reactive Forms: The Comprehensive Guide
4:07
Web Tech Talk
Рет қаралды 2,3 М.
Getting Started with Standalone Components in Angular
11:49
Angular
Рет қаралды 184 М.
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.
How Strong Is Tape?
00:24
Stokes Twins
Рет қаралды 96 МЛН
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 120 МЛН
5 deadly Rust anti-patterns to avoid
13:25
Let's Get Rusty
Рет қаралды 40 М.
Getting started with standalone components | new way of routing in angular v15
25:23
Technical Babaji (Tarique Akhtar)
Рет қаралды 10 М.
Angular change detection explained in 5 minutes
6:06
Simplified Courses
Рет қаралды 16 М.
Angular Signals: The Complete Guide
15:22
Web Tech Talk
Рет қаралды 23 М.
Migrate An Angular 11 Project to 17: Step-by-Step Guide
12:44
Web Tech Talk
Рет қаралды 16 М.
AI Is Making You An Illiterate Programmer
27:22
ThePrimeTime
Рет қаралды 169 М.
Server-Side Rendering (SSR) & Hydration in Angular Explained
9:01
Web Tech Talk
Рет қаралды 16 М.
Deferrable Views in Angular 17
10:01
Web Tech Talk
Рет қаралды 3 М.