Тёмный
Web Tech Talk
Web Tech Talk
Web Tech Talk
Подписаться
Welcome to this RU-vid channel, your ultimate destination for mastering web development with comprehensive tutorials and courses! Whether you're a beginner or an advanced developer, this channel offers step-by-step guides, full courses, and interview preparation for a wide range of technologies including Angular, JavaScript, CSS, HTML, and React.

This channel features:

Angular: From beginner tutorials to full courses and advanced interview questions and answers.

JavaScript: Start with beginner-friendly tutorials and progress to full courses. Learn the fundamentals, advanced concepts, and prepare for interviews.

CSS: Master the art of styling with our CSS tutorials. Perfect for beginners who want to create visually stunning websites.

HTML: Begin your web development journey with HTML tutorials and full courses.

React: Learn to build powerful user interfaces with React tutorials.

#angular #react #javascript #css #html

Subscribe now and turn your coding dreams into reality!
Angular 18 New Feature: redirectTo function
5:36
2 месяца назад
Deferrable Views in Angular 17
10:01
3 месяца назад
New Control Flow in Angular 17
14:57
4 месяца назад
What's new in Angular 18
2:27
4 месяца назад
Angular Signals: The Complete Guide
15:22
5 месяцев назад
Angular Functional Route Guards Explained
4:25
6 месяцев назад
Reuse Directives | Directive Composition API
4:22
7 месяцев назад
Power of lazy loading | Angular
3:53
11 месяцев назад
Power of angular pipes | Angular
3:07
11 месяцев назад
Angular 17 First Look
2:40
11 месяцев назад
Комментарии
@RaghuRam-y8y
@RaghuRam-y8y 3 часа назад
while migrating to standalone components. after the 3rd and last step. i am getting blank white screen when serving the app. no build errors and no console errors. can you throw some light on what can be the issue?. BTW great video.
@en_kratia
@en_kratia День назад
Thank you
@WebTechTalk
@WebTechTalk День назад
Welcome!
@raghuram.kaligotla
@raghuram.kaligotla День назад
In my project i have module defined for respective module in the application. In each module i have routes defined for the components inside it. In this case how can i remove the module and use the routes?. In a component when i write providerouter inside providers giving me error
@WebTechTalk
@WebTechTalk День назад
Don't need to provide your routes in each component. You can have separate route files for each logical module and then you can provide in app config file. Please see this video, you will get an idea. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-RQFp-3bJ6IQ.html
@kiransaravade5127
@kiransaravade5127 День назад
very nice.. please share source code
@WebTechTalk
@WebTechTalk День назад
You can find the source code of the applications used in all the videos in this repository. github.com/freelancer-surender/Angular---Hero-to-Superhero
@arjun8442
@arjun8442 2 дня назад
Bro i need urgent help in my angular 16 project, some of the jasmine karma unit tests are flaky in nature. Some times they pass and sometimes they fail due to Error: executing a cancelled action at AsyncAction.execute Please tell me how to resolve this.
@Arjun-x1u5d
@Arjun-x1u5d 2 дня назад
Hi brother, i need ur urgent help. Please dont ignore I am working on angular 16 project and its jasmine karma tests are flaky in nature sometimes they pass but soemtimes they fail. The error logs is - Error: executing a cancelled action 17:40:42 at AsyncAction.execute (node_modules/rxjs/dist/esm/internal/scheduler/AsyncAction.js:41:20) 17:40:42 at AsyncScheduler.apply (node_modules/rxjs/dist/esm/internal/scheduler/AsyncScheduler.js:17:33) 17:40:42 at apply (node_modules/zone.js/fesm2015/zone.js:2367:41) 17:40:42 at _ZoneDelegate.invokeTask (node_modules/zone.js/fesm2015/zone.js:402:31) 17:40:42 at ProxyZoneSpec.onInvokeTask (node_modules/zone.js/fesm2015/zone-testing.js:304:39) 17:40:42 at _ZoneDelegate.invokeTask (node_modules/zone.js/fesm2015/zone.js:401:60) 17:40:42 at Zone.runTask (node_modules/zone.js/fesm2015/zone.js:173:47) 17:40:42 at call (node_modules/zone.js/fesm2015/zone.js:483:34) 17:40:42 at apply (node_modules/zone.js/fesm2015/zone.js:472:48) 17:40:42 at data.args.<computed> (node_modules/zone.js/fesm2015/zone.js:2347:32) Can u please help me what is the root cause of this error and how to fix this. What do u thing what i am missing in tests?
@miladmashayekhi6235
@miladmashayekhi6235 5 дней назад
excellent work
@WebTechTalk
@WebTechTalk 4 дня назад
Thank you 👍
@bhargavrg3094
@bhargavrg3094 5 дней назад
for content projection we cannot use self-closing tag 😢
@WebTechTalk
@WebTechTalk 5 дней назад
Content projection is just a convenience feature bro. It is not mandatory to use that. When we use content projection, we can go for normal closing tags.
@huw1676
@huw1676 6 дней назад
Really good explanation. Thank you
@WebTechTalk
@WebTechTalk 5 дней назад
@@huw1676 Thank you
@mariopetrovic
@mariopetrovic 6 дней назад
As you sure know, having *ngIf inside that for loop, only hides span element, the loop still counts and prints all divs. This solution should be augmented with a simple pipe filter that eliminates odd numbers.
@WebTechTalk
@WebTechTalk 6 дней назад
@@mariopetrovic Yes bro ngIf hides the element where it is applied. And we can achieve the requirement using different ways, even we don't need a pipe, we can achieve it using ngClass or ngStyle itself. But I took this example to explain the ng-content concept.
@mariopetrovic
@mariopetrovic 6 дней назад
@@WebTechTalk the end goal is to not have elements present in the DOM if you dont need them. NgClass and NgStyle would not give you that.
@sanketpawar4685
@sanketpawar4685 7 дней назад
Helpfull Series, Thank you!
@WebTechTalk
@WebTechTalk 7 дней назад
Thank you so much 🙏
@Мухамед-у1й
@Мухамед-у1й 7 дней назад
Так лучше не делать. Можно создать директиву с нужными событиями и повесить её на router-outlet, затем внедрить эту директиву используя DI в дочерних компонентах и там эмитить события директивы, а на router-outlet получать эти события из директивы.
@WebTechTalk
@WebTechTalk 6 дней назад
Ok. Any specific reason why we need a directive? I would like to know more about that.
@mahmoudsamir6876
@mahmoudsamir6876 7 дней назад
I appreciate the time and effort you put into each video.
@WebTechTalk
@WebTechTalk 7 дней назад
Thank you so much 🙏
@sasmitasimmy
@sasmitasimmy 7 дней назад
Loved the content, short crisp and to the point.
@WebTechTalk
@WebTechTalk 7 дней назад
Thank you so much 🙏
@rahulsudhakaran923
@rahulsudhakaran923 8 дней назад
Really informative 👌😎
@WebTechTalk
@WebTechTalk 7 дней назад
Thank you so much 👍
@rahulagarwal9210
@rahulagarwal9210 8 дней назад
Ye angular k konse version me h?
@WebTechTalk
@WebTechTalk 8 дней назад
This is using Angular 11
@mostwanted2000
@mostwanted2000 9 дней назад
Bad English
@WebTechTalk
@WebTechTalk 9 дней назад
Thanks. Will try to improve.
@sanjeevgaur1973
@sanjeevgaur1973 11 дней назад
Very Well Explained.
@WebTechTalk
@WebTechTalk 11 дней назад
Thank you so much 🙏
@ShitalUnde-i8m
@ShitalUnde-i8m 11 дней назад
nice series keep doing it🙂
@WebTechTalk
@WebTechTalk 11 дней назад
Thank you so much 🙏
@weixiangng8279
@weixiangng8279 12 дней назад
Hi what if I do not want to specify so much routing in my app.routes.ts but instead of I want to have separate routing for standalone component. Is this possible?
@WebTechTalk
@WebTechTalk 12 дней назад
Good question. We can maintain them in separate routes file. And before providing inside provideRouter function, we can combine all the routes into a single array using spread array operator. const routes = [...adminRoutes, ...featureARoutes, ...featureBRoutes, ...otherRoutes];
@PrasanthPonnusamy-c6m
@PrasanthPonnusamy-c6m 13 дней назад
Hi bro, Can you add the elaborated video of SSR please ?
@WebTechTalk
@WebTechTalk 12 дней назад
Ok bro
@mantumsp3647
@mantumsp3647 13 дней назад
Thanks Boss.... 🎉
@WebTechTalk
@WebTechTalk 13 дней назад
Thank you 🙏
@makannanagaraj3060
@makannanagaraj3060 14 дней назад
Precise explanation, Thank you for your effort
@WebTechTalk
@WebTechTalk 14 дней назад
Thank you so much
@pardeepsaini3844
@pardeepsaini3844 15 дней назад
🎉Much usefull 🎉
@WebTechTalk
@WebTechTalk 15 дней назад
@@pardeepsaini3844 Thank you so much 🙏
@LordEra
@LordEra 15 дней назад
I cannot even begin to express the joy in my heart when I finished watching this video. thank you so much for sharing your knowledge
@WebTechTalk
@WebTechTalk 15 дней назад
Thank you so much
@saivarunts898
@saivarunts898 15 дней назад
Could you please share the URL which your following or any one else ???
@WebTechTalk
@WebTechTalk 15 дней назад
This one? angular.dev/update-guide
@mhmdmatar01
@mhmdmatar01 15 дней назад
Great explanation with examples! Thank you brother and keep it up <3
@WebTechTalk
@WebTechTalk 15 дней назад
Thank you so much 🙏
@MohammedFaizal-r2l
@MohammedFaizal-r2l 16 дней назад
this guy is a master
@WebTechTalk
@WebTechTalk 16 дней назад
@@MohammedFaizal-r2l Thank you so much 🙏
@stepanmikhailiuk4571
@stepanmikhailiuk4571 16 дней назад
Karma is deprecated, are you guys still using it?
@WebTechTalk
@WebTechTalk 16 дней назад
@@stepanmikhailiuk4571 I am working for a same client for the past 2 years and they are not bothering about unit testing. In my next project I will not use Karma.
@ankitajain5653
@ankitajain5653 17 дней назад
Very nice explanation
@WebTechTalk
@WebTechTalk 17 дней назад
Thank you so much
@ananda2153
@ananda2153 17 дней назад
Detailed explanation of signals with a real time example. Thanks for sharing the knowledge !!
@WebTechTalk
@WebTechTalk 17 дней назад
Thank you so much.
@pralanvideos9631
@pralanvideos9631 17 дней назад
Hi bro, i have a doubt. Why here we didn't compile components before component instance creation?
@WebTechTalk
@WebTechTalk 17 дней назад
Here we are not testing the components bro, we are testing the router. So, we can create the component instance later when we really need it.
@SaiKumar-tg6ct
@SaiKumar-tg6ct 18 дней назад
Anna, can you please make videos on *docker and kubernates*
@WebTechTalk
@WebTechTalk 17 дней назад
@@SaiKumar-tg6ct Bro, I have not worked a lot on Docker and Kubernetes.
@SaiKumar-tg6ct
@SaiKumar-tg6ct 17 дней назад
@@WebTechTalk okay 👍
@vaidehi9317
@vaidehi9317 19 дней назад
To the point explanation. Thank you.
@WebTechTalk
@WebTechTalk 18 дней назад
Thank you so much
@rowehnakori
@rowehnakori 19 дней назад
Tried to apply this to test a Http call that loads a local json file, but expectOne(path) keeps failing even though I am sure the path is correct (because expectations inside the subscribe are verified)
@WebTechTalk
@WebTechTalk 19 дней назад
What is the error message you are seeing in the test result page?
@FulviaVenturi
@FulviaVenturi 19 дней назад
Trying to apply this to an http call that loads a local json file but expectOne() keeps failing, even though the path is correct
@miss_aishya
@miss_aishya 20 дней назад
very informative, Do post more Angular videos
@WebTechTalk
@WebTechTalk 20 дней назад
Thanks. Sure I'll do.
@mmkbhdk
@mmkbhdk 22 дня назад
can u share your github repo for the video example code?
@WebTechTalk
@WebTechTalk 21 день назад
You can find all codes related to angular advanced concepts here. github.com/freelancer-surender/Angular-General
@mmkbhdk
@mmkbhdk 5 дней назад
@@WebTechTalk Thanks a lot
@suryaprakash7980
@suryaprakash7980 22 дня назад
Test
@WebTechTalk
@WebTechTalk 22 дня назад
?
@KomalGhugri
@KomalGhugri 24 дня назад
Till now I have referred many sites, to understand flow of NgRx, This is the best. Thanks alot for grate work!
@WebTechTalk
@WebTechTalk 24 дня назад
@@KomalGhugri Thanks a lot 🙏
@shashikantnalavade9978
@shashikantnalavade9978 24 дня назад
Awesome video ❤
@WebTechTalk
@WebTechTalk 24 дня назад
Thank you so much 🙏
@KomalGhugri
@KomalGhugri 24 дня назад
It was informative, short and helpfull information, Thank You Sir!
@WebTechTalk
@WebTechTalk 24 дня назад
Thank you so much 🙏
@pardeepsaini3844
@pardeepsaini3844 25 дней назад
Please answer a question. when we try to get query parameters from url then why method is call 2 or 3 times, which can be seen by applying debugger. I mean query params must be available in single hit .
@WebTechTalk
@WebTechTalk 25 дней назад
For me I am getting in a single hit only.
@gauthamchengappa1702
@gauthamchengappa1702 25 дней назад
Great explanation
@WebTechTalk
@WebTechTalk 25 дней назад
Thank you so much
@Simon_R_Ghost
@Simon_R_Ghost 25 дней назад
Thank you sir, you really saved my app. Instant Subscribe
@WebTechTalk
@WebTechTalk 25 дней назад
@@Simon_R_Ghost Thank you so much 🙏
@lakshminarayanaallam4703
@lakshminarayanaallam4703 27 дней назад
Nice Explanation thank you
@WebTechTalk
@WebTechTalk 27 дней назад
Thank you so much
@sprinkleOfJoy
@sprinkleOfJoy 27 дней назад
Good explanation
@WebTechTalk
@WebTechTalk 27 дней назад
Thank you so much
@PrathyushaReddyChalla
@PrathyushaReddyChalla 27 дней назад
Great video. You cleared all my doubts . Thanks A lot !!!
@WebTechTalk
@WebTechTalk 27 дней назад
Thank you so much
@gauthamvv
@gauthamvv 28 дней назад
clear cut to the point explanations. I always follow your tutorials and i am able to clear interviews. Subscribed the channel. Thanks
@WebTechTalk
@WebTechTalk 28 дней назад
Thank you so much. Feedback like this really encouraging me a lot.
@pranavkulkarni7551
@pranavkulkarni7551 Месяц назад
Great Explanations!
@WebTechTalk
@WebTechTalk 29 дней назад
@@pranavkulkarni7551 Thank you so much 🙏