🎉FESTIVE SEASON SPECIAL OFFER! 🎉 🔥 UP TO 95% OFF -TILL 15TH NOVWMBER! 🔥 👉 Ready to level up your skills? Check out our exclusive Diwali discounts on top-rated courses! Perfect for beginners to pros. Ionic 8+ & NodeJS: Beginner to Pro - Build a Food Delivery App 🚀 Go from zero to hero! USE COUPON CODE : FESTIVE95 Ionic 8+: Beginner to Advanced - Build a Food Delivery App 🍲 Master Ionic & build apps like a pro! USE COUPON CODE : FESTIVE95 NodeJS: Beginner to Pro - APIs for Food Delivery & Ecommerce 💡 Perfect your backend skills with NodeJS! USE COUPON CODE : FESTIVE95 Ionic 8+ Chat App using Firebase 💬 Build a real-time chat app in Ionic! Join the Course - USE COUPON CODE : FESTIVE95 🎊 Hurry up, this offer is Valid till 15th November 🎊 🔔 Subscribe for more tutorials, Like if you found this helpful, and Comment if you have any questions!
Looking for a latest video to learn new concepts in Angular. I found one 😊. Thank you... Also please continue doing content on angular like more Angular projects integrating APIs with a Database.... Full stack project.
yaar itna sahi video banaya hai per donoko compare nahi karna chahiye tha koi ek ko properly samjha dete toh kisi begginer ko easy padta...............per firbhi the video is awesome
Hi I understand your doubt If you are familiar with html, css, js then go ahead with the course as a beginner otherwise learn it before starting I will also bring videos on html css js complete guide but it will take time as it has to be unique and good quality courses
Course is good but for beginners, i wouldn’t say it is preferable. I am beginner and started watching but explaining two different things parallelly, ngmodule and standalone, is really confusing. You could have explained second approach after completing any one approach because that way viewer can inter relate things easily as they are aware of one approach. This way it all got messed up for me and had hard time to differentiate between the approaches which i am not even aware of. Also i feel that concepts are not explained in depth. But good job. Keep improving and growing..
I understand it’s a bit tough to understand both, but it’s important for everyone to understand both otherwise you guys will not be able to understand angular fully. I tried my best to make it simpler for everyone as much as I can. Angular is shifting to standalone slowly but NgModule is still in use, so if you understand both then whatever changes is made you will be unaffected by it if you know both approaches and its pros and cons…that’s why I did that I would suggest you to just put little more effort and understand it, then it will be smooth ride for you Still if you don’t understand something I am there to help you out…don’t worry Or do one thing just focus on angular standalone approach and leave the other one
hey dude ,,, is this your real channal or not matlab itna accha sub kuch hai yaniki ye course or animation or editing wageeraah matlab sab kuch fir bhi itne hi subscribers so i ask ki aaoka yahi hi real channnal hai na by the way best and stay diciplin or keep it up 😍😍
Only at some point NgModule is explained Mostly focused on standalone project, once it is ready for a screen then sharing the same in other approach In companies NgModule is still in use, so from job perspective it is necessary Still I will bring separate videos on standalone and NgModule with different project in future…basically explaining everything with standalone and at last converting to NgModule also But for now, as beginner focus on standalone approach and skip the NgModule part, if needed check it later… in this way you can learn one approach easily
Hi bro, if possible make a real life project which like Udemy clone which can teach us uploads and has an admin side to it as well. plus stripe integration etc
That’s a huge project but I will bring some project on admin panel and similar stuff that you asked, may be with some features, not yet decided completely
Little knowledge of css will do, js is needed, if you know typescript then its great Typescript course is already available in the channel Javascript course will be launched within this month If you grab typescript, it will be easy for you to understand logic part in angular and rest is html… Css is not used to a great extent as bootstrap library will be used so you do t have to worry about css much
as a beginner the start was good , thoda thoda samaz aa raha tha , phir jaise hi 5-6 chize ek sath hone lagi jo pahlele aaiya tha samaz vo bhi nhi ara ab , its not ki the course is bad , you are teaching it in a really good manner , but there are times mujhse aaisa laga ki aap just ki chize work kare project mai is liye kar rahe ho rather than aap padha rahe ho . Dont know how to understand as there are a lot of things going on jo samazna muskil ho gaya hai
May I know where you are getting stuck or finding it complicated, will explain that parts in another video for beginners with better examples Just let me know the topics from timestamp
@@CodewithTechnyksofficial sir its where when you started file logic , when you started optimising the code to reduce redundancy, after that part its became like a bouncer to understand as without optimization the code flow you told was in the mind and after that it was all gone because the code started fresh
Your teaching strategy is good.... but you are commenting whole code in that way is very irritating, when learning something new , don't understand which commented code is useful for other commented part . i think commenting code for future reference is good but like this lot of code commented is not good...
Auth guards is not covered up here, rest almost all topics covered For job perspective, you have to make a bigger project using the things explained in the course to practise and strengthen your resume. Then you will be ready for a job in angular
I understand it’s a bit tough to understand both, but it’s important for everyone to understand both otherwise you guys will not be able to understand angular fully. I tried my best to make it simpler for everyone as much as I can. Angular is shifting to standalone slowly but NgModule is still in use, so if you understand both then whatever changes is made you will be unaffected by it if you know both approaches and its pros and cons…that’s why I did that I would suggest you to just put little more effort and understand it, then it will be smooth ride for you Still if you don’t understand something I am there to help you out…don’t worry
It will help you to learn angular… to get jobs in angular framework you need to create bigger projects than this, show it in your portfolio This course will help you to adapt to the core with latest features which is hard to find altogether… Will bring part 2 on route guards which is very important…after learning that only thing needed is to execute a big project…which you can work on yourself Also will bring a video on admin portal creation with angular If you do all these then you will be ready for angular jobs
Yes i will but it will take some time as i will try to bring my best content for you all...possibly within this year as many things are lined-up. Will try to work on it asap...till then enjoy this course for web development...thanks for your love and support
Sorry to hear that, let me try to explain here again in brief: Lazy loading is a technique that makes your Angular app faster by loading only the parts of the app that the user actually needs at a given moment. For example, if your app has sections like Home, Courses, About, and Admin, without lazy loading, all of these would load as soon as the app starts, even if the user is only viewing Home. This can make your app slower. With lazy loading, you can tell Angular to load the Admin section only when the user clicks on the Admin link. This reduces the initial load time, improves performance, and ensures the app stays lightweight. In traditional Angular projects, lazy loading is usually achieved through routing by using the loadChildren property. For example: { path: 'admin', loadChildren: () => import('./admin/admin.module').then(m => m.AdminModule) } In standalone Angular projects (using Angular 14 and above), lazy loading can be done in a similar way but instead of loading a module, you can load standalone components. For instance, using the loadComponent method in the route: { path: 'admin', loadComponent: () => import('./admin/admin.component').then(c => c.AdminComponent) } This makes lazy loading more flexible, especially for projects that follow the standalone component approach. I hope this clarifies things! Feel free to ask doubts here, for more content check out my English channel - th-cam.com/users/CodingTechnyks
@@CodewithTechnyksofficial thank you so much for taking out the time to reply. I understand it now. Rest of the video was great and easily understandable
hello guys meri bat se agree karte ho to comment karna i requested to you sir, please ak axa project banva dijiye ho sake to backend ke liye .net core api ka use krva dena please
Hi If you are finding hard to understand then simply focus on the standalone part…skip the NgModule explanation…in that way you will understand standalone which is fine…when project starts everything will be in standalone approach till it completes
sir, ye 1:27:19 pr agar hm ek page poora hi change krna chahte hn bina RELOAD kre, to fir kya karenge, agar sirf ek section change krna chahe wo to samajh gye pr poore document ko kaise change kr skte hn
If you have to change the entire page then you change in app.component.html or create a component let’s say home Then call the home component in app.component.HTML file directly with no other code in app.component.html file If you do that, then the entire page will change, try it
@@CodewithTechnyksofficial no i'm new in this course and i'm watching your video from past 2 days and learn , so basically whenever i watch tutorials i forgot timesteps and difficult to find that's why but i have questions that can i learn angular without learn javascript ?
🎉FESTIVE SEASON SPECIAL OFFER! 🎉
🔥 UP TO 95% OFF -TILL 15TH NOVWMBER! 🔥
👉 Ready to level up your skills? Check out our exclusive Diwali discounts on top-rated courses! Perfect for beginners to pros.
Ionic 8+ & NodeJS: Beginner to Pro - Build a Food Delivery App
🚀 Go from zero to hero!
USE COUPON CODE : FESTIVE95
Ionic 8+: Beginner to Advanced - Build a Food Delivery App
🍲 Master Ionic & build apps like a pro!
USE COUPON CODE : FESTIVE95
NodeJS: Beginner to Pro - APIs for Food Delivery & Ecommerce
💡 Perfect your backend skills with NodeJS!
USE COUPON CODE : FESTIVE95
Ionic 8+ Chat App using Firebase
💬 Build a real-time chat app in Ionic!
Join the Course -
USE COUPON CODE : FESTIVE95
🎊 Hurry up, this offer is Valid till 15th November 🎊
🔔 Subscribe for more tutorials, Like if you found this helpful, and Comment if you have any questions!
sir Angular pe 2 - 4 project banake upload kr do na kyoki usse bohot kuch sikhne milega aur project bhi ban jayenge hm logo ke
Sir angular material ka course laye
Eakdam best tutorial hai bhai bohot sare video dekhe but result aur understanding apke he video se aye hai
I seen 10 + angular tutorials, But This Tutorial is the best
That’s what I wanted to hear as it includes all the latest stuffs…thank you
Superb! Big support from Kerala. Bahut badiya kam kia apnea ji
Really very helpful sir, good decision to start another channel on Hindi, very comfortable learning in hindi😊
I am at 1:06:00 ,and till here everything is perfect, excited forward
I am glad to hear that you are liking it...feel free to ask any doubt, i will try to answer asap
😍 I am gonna edit this comment and I'll provide my review after the whole course ❤
Hope you are liking the course...
Looking for a latest video to learn new concepts in Angular. I found one 😊. Thank you...
Also please continue doing content on angular like more Angular projects integrating APIs with a Database.... Full stack project.
Thanks for your valuable feedback
keep doing its very helpful for me i want more video in advance full flash angular
it is really useful ,thank you bro
yaar itna sahi video banaya hai per donoko compare nahi karna chahiye tha koi ek ko properly samjha dete toh kisi begginer ko easy padta...............per firbhi the video is awesome
keep uploading sir.
Yes I will
Do share as much as you can
Thanks a lot for this course mahn..so comprehensive yet detailed
Glad it was helpful!
Thank you
will this 7 hours of video give a good start for a beginner? please reply?
Hi
I understand your doubt
If you are familiar with html, css, js then go ahead with the course as a beginner otherwise learn it before starting
I will also bring videos on html css js complete guide but it will take time as it has to be unique and good quality courses
Thanks for the angular code sir ❤
sir its very helpful.
please make full vedio on unit testing in angular with jasmine framework. this vedioe very much needed
Course is good but for beginners, i wouldn’t say it is preferable. I am beginner and started watching but explaining two different things parallelly, ngmodule and standalone, is really confusing. You could have explained second approach after completing any one approach because that way viewer can inter relate things easily as they are aware of one approach. This way it all got messed up for me and had hard time to differentiate between the approaches which i am not even aware of. Also i feel that concepts are not explained in depth.
But good job. Keep improving and growing..
I understand it’s a bit tough to understand both, but it’s important for everyone to understand both otherwise you guys will not be able to understand angular fully. I tried my best to make it simpler for everyone as much as I can. Angular is shifting to standalone slowly but NgModule is still in use, so if you understand both then whatever changes is made you will be unaffected by it if you know both approaches and its pros and cons…that’s why I did that
I would suggest you to just put little more effort and understand it, then it will be smooth ride for you
Still if you don’t understand something I am there to help you out…don’t worry
Or do one thing just focus on angular standalone approach and leave the other one
hey dude ,,, is this your real channal or not
matlab itna accha sub kuch hai yaniki ye course or animation or editing wageeraah matlab sab kuch
fir bhi itne hi subscribers so i ask ki aaoka yahi hi real channnal hai na
by the way best and stay diciplin or keep it up 😍😍
Hi
I already have English Channel coding Technyks
Recently published Hindi channel
If you all support, this channel can grow very quickly
@@CodewithTechnyksofficial ohh I see full support from this side keep it up 👍🫡
I am starting this project today
Pls make Vue Js in One Shot and also Make E-commerce Project in Vue Js
I have not worked with vuejs yet
In future, if I try that will bring it for sure
The video is good but its confusing for beginners to learn simultaneously parallelly. Anyways keep growing .
Only at some point NgModule is explained
Mostly focused on standalone project, once it is ready for a screen then sharing the same in other approach
In companies NgModule is still in use, so from job perspective it is necessary
Still I will bring separate videos on standalone and NgModule with different project in future…basically explaining everything with standalone and at last converting to NgModule also
But for now, as beginner focus on standalone approach and skip the NgModule part, if needed check it later… in this way you can learn one approach easily
Best course
Kya best lag raha hai
Itna complex hei ye
1000 tarah ka tamasha chala rakha hai
Wow wow good
nice sir ❤️👍
sir, can you update the timer after add and fetch localstorage
It's updated
ng g c command is not work on my laptop 💻 why? What a problem ?please help me 😢😢
Install angular cli again
Yes try again if showing ng command not found or error related to ng
Otherwise, connect via Instagram
sir,
vs code terminal throw a error when i write ng serve -o but windows command prompt run this command perfectly
What is the error in vs code, kindly share
Hi bro, if possible make a real life project which like Udemy clone which can teach us uploads and has an admin side to it as well. plus stripe integration etc
That’s a huge project but I will bring some project on admin panel and similar stuff that you asked, may be with some features, not yet decided completely
500th like 😃
Wow sir
Css or js must hai kya angular ke liye?
Ya direct angular se start kar sakte hai?
Little knowledge of css will do, js is needed, if you know typescript then its great
Typescript course is already available in the channel
Javascript course will be launched within this month
If you grab typescript, it will be easy for you to understand logic part in angular and rest is html…
Css is not used to a great extent as bootstrap library will be used so you do t have to worry about css much
Hi Nikhil bro, if possible can you upload the same content in English as well. Thank you
It will be difficult
I will try to add eng subtitles to it
Still will think over it
@@CodewithTechnyksofficial Yes subtitles would do a lot. Thank you bro
Pls make same for React Js and Laravel 11
as a beginner the start was good , thoda thoda samaz aa raha tha , phir jaise hi 5-6 chize ek sath hone lagi jo pahlele aaiya tha samaz vo bhi nhi ara ab , its not ki the course is bad , you are teaching it in a really good manner , but there are times mujhse aaisa laga ki aap just ki chize work kare project mai is liye kar rahe ho rather than aap padha rahe ho . Dont know how to understand as there are a lot of things going on jo samazna muskil ho gaya hai
May I know where you are getting stuck or finding it complicated, will explain that parts in another video for beginners with better examples
Just let me know the topics from timestamp
@@CodewithTechnyksofficial sir its where when you started file logic , when you started optimising the code to reduce redundancy, after that part its became like a bouncer to understand as without optimization the code flow you told was in the mind and after that it was all gone because the code started fresh
Your teaching strategy is good.... but you are commenting whole code in that way is very irritating, when learning something new , don't understand which commented code is useful for other commented part . i think commenting code for future reference is good but like this lot of code commented is not good...
Hello brother beofre starting this video need info , in this video , apne auth gards or authentication use kiye hai ?
Hi, authentication is not included…will bring a separate video on that
Auth guards will be explained there nicely
You can check my English Channel Coding Technyks (th-cam.com/users/CodingTechnyks) to learn about auth guards using ionic angular
Thanks for your efforts....Lot of love ❤
Is this video is enough to crack interview
When i already have knowledge of HTML, css, js
Yes it is, more videos coming for angular with advanced features
Can u make video working of angular with. Net
Please upload a video on Typescript
Will definitely launch by next two months, till then stay tuned🔔
Pls Upload Node Js Playlist
sir is there any way to get its code also where to get these images, please tell us about images
Hi! the code is shared in the description....kindly check it
Hello Sir please reply me.... Kya aapka ye course complete hai ? kya ese achhe se complete kr liya to job le sakta hu interview nikal jayega ???
Auth guards is not covered up here, rest almost all topics covered
For job perspective, you have to make a bigger project using the things explained in the course to practise and strengthen your resume. Then you will be ready for a job in angular
Asslam-o-Alaikum
Yar ap netflix ya amazone ka clone ki video bano
Sir ap samjha to bohat acha rahe hain but ngmodel and standalone parallel mein samjha kar bohat complex kar dia hai
I understand it’s a bit tough to understand both, but it’s important for everyone to understand both otherwise you guys will not be able to understand angular fully. I tried my best to make it simpler for everyone as much as I can. Angular is shifting to standalone slowly but NgModule is still in use, so if you understand both then whatever changes is made you will be unaffected by it if you know both approaches and its pros and cons…that’s why I did that
I would suggest you to just put little more effort and understand it, then it will be smooth ride for you
Still if you don’t understand something I am there to help you out…don’t worry
Is this job ready tutorial please reply
It will help you to learn angular… to get jobs in angular framework you need to create bigger projects than this, show it in your portfolio
This course will help you to adapt to the core with latest features which is hard to find altogether…
Will bring part 2 on route guards which is very important…after learning that only thing needed is to execute a big project…which you can work on yourself
Also will bring a video on admin portal creation with angular
If you do all these then you will be ready for angular jobs
Sir please make a video on angular react
Angular vs React?
On full angular course sry for late reply@@CodewithTechnyksofficial
Sir agli baari next js ki
Yes i will but it will take some time as i will try to bring my best content for you all...possibly within this year as many things are lined-up. Will try to work on it asap...till then enjoy this course for web development...thanks for your love and support
goood
we need complete Typescript video
It’s already available on the channel
Mast hai
angular cli ka btaya he ni kese download or install hoga
It’s explained, check it properly
@@CodewithTechnyksofficial Got it
Hello Bhaiya ls typescript pe video baniye
HI Jitesh, work in progress...course is in editing phase expect it by tuesday or wednesday
@@CodewithTechnyksofficial Hi Bhaiya app bohat accha padate pls apka udemy Angular with Project ka Course leke aye
At the lazy loading part , the understanding level suddenly goes down by 90% . As a beginner , that got too heavy due to lack of explanation
Sorry to hear that, let me try to explain here again in brief:
Lazy loading is a technique that makes your Angular app faster by loading only the parts of the app that the user actually needs at a given moment. For example, if your app has sections like Home, Courses, About, and Admin, without lazy loading, all of these would load as soon as the app starts, even if the user is only viewing Home. This can make your app slower.
With lazy loading, you can tell Angular to load the Admin section only when the user clicks on the Admin link. This reduces the initial load time, improves performance, and ensures the app stays lightweight.
In traditional Angular projects, lazy loading is usually achieved through routing by using the loadChildren property. For example:
{
path: 'admin',
loadChildren: () => import('./admin/admin.module').then(m => m.AdminModule)
}
In standalone Angular projects (using Angular 14 and above), lazy loading can be done in a similar way but instead of loading a module, you can load standalone components. For instance, using the loadComponent method in the route:
{
path: 'admin',
loadComponent: () => import('./admin/admin.component').then(c => c.AdminComponent)
}
This makes lazy loading more flexible, especially for projects that follow the standalone component approach.
I hope this clarifies things! Feel free to ask doubts here, for more content check out my English channel - th-cam.com/users/CodingTechnyks
@@CodewithTechnyksofficial thank you so much for taking out the time to reply. I understand it now. Rest of the video was great and easily understandable
With projects
code bhi nhi diya github pe kya iska
In GitHub you will find code of videos from my English Channel
Will share the code soon
hello guys meri bat se agree karte ho to comment karna
i requested to you sir, please ak axa project banva dijiye ho sake to backend ke liye .net core api ka use krva dena please
worked with .net a long time ago...have to brushup...for now i will bring a course - ionic with laravel (backend)...coming soon
Typescript crash course
Will bring it next month
Some videos are already lined up
Please share the source code sir
Source code link in description
Image show nahi hora
Replied in Instagram
Very confusing while learning for the beginners
If confused with both approaches learning together then I will separate it
sir decorators ka bara ma bata da
It’s there in video
If you dint understand something then let me know…
Bhai ap kha sa ha
From Assam, India at present
buht mix kr rhy hu bhai alag alag videos bna stand alone or ng pr asy kuch samjh nhi arha
Hi
If you are finding hard to understand then simply focus on the standalone part…skip the NgModule explanation…in that way you will understand standalone which is fine…when project starts everything will be in standalone approach till it completes
Will bring different videos for NgModule and standalone to understand the course in a better way
Don’t worry, will help you to learn properly
sir, ye 1:27:19 pr agar hm ek page poora hi change krna chahte hn bina RELOAD kre, to fir kya karenge,
agar sirf ek section change krna chahe wo to samajh gye pr poore document ko kaise change kr skte hn
If you have to change the entire page then you change in app.component.html or create a component let’s say home
Then call the home component in app.component.HTML file directly with no other code in app.component.html file
If you do that, then the entire page will change, try it
If you have more doubts related to it then accumulate them and connect via Instagram
@@CodewithTechnyksofficial yes sir , i have tried it. it worked. Thanks
41:39
Are you facing any issue at that time
@@CodewithTechnyksofficial no i'm new in this course and i'm watching your video from past 2 days and learn , so basically whenever i watch tutorials i forgot timesteps and difficult to find that's why but i have questions that can i learn angular without learn javascript ?
very bad tutorial 0 understanding only rata
What you dint understand, connect via Instagram and I can help you with your queries