How To Debug React Apps Like A Senior Developer

  Рет қаралды 151,295

Web Dev Simplified

Web Dev Simplified

Күн бұрын

Пікірлер: 144
@alexfoxleigh9443
@alexfoxleigh9443 2 ай бұрын
I’ve been a dev for 26 years. Am now a technical architect. I use these tools occasionally but 99% of the time I just use console logging. It’s quick and it’s simple and it does the job the vast majority of of the time.
@LongJourneys
@LongJourneys 2 ай бұрын
LOL me too. I've been doing this since the late 90s. I've tried using all of the newer/more complex tools, and they definitely have their use cases, but console.log is certainly simpler.
@vitorisaia
@vitorisaia 2 ай бұрын
Thanks, I'm not alone!
@AbdurrahmanHafez
@AbdurrahmanHafez 2 ай бұрын
I am a console logger too, but these tips sometime help and save some time
@alexfoxleigh9443
@alexfoxleigh9443 2 ай бұрын
@@AbdurrahmanHafez Oh yeah, definitely not saying they are useless the force suspense and force error ones are super-useful. I'm just not using most of the debugging tools all that often. Especially breakpoints and IDE debugging. I don't think I've ever used that.
@petrsehnal7990
@petrsehnal7990 2 ай бұрын
@@alexfoxleigh9443 as an architect your focus is probably on much more highlevel concepts than debugging individual react coponents 🙂
@jason_v12345
@jason_v12345 2 ай бұрын
Ironically, the more "senior" I get (20 years) the less I feel a need for these things. A few strategically placed console logs tend to be sufficient for most bugs. Impressive though!
@MichaelKire
@MichaelKire 2 ай бұрын
almost 20 years web dev here as well. Rarely use these tools. As you said: a few well places console logs + a great designed system is all you need. if the code however is poorly designed, I can see the need for these tools to help understanding what the f is going on. I once redid an entire label-printing system, because everything was touching and changing global variables on all sorts of weird ways, making it completely impossible to understand what was going on. Maybe one of these debugging tools could have done a difference, but this was even back before nextjs or react was a thing. Maybe even before typescript was a thing, or in its infancy (8-9 years ago).
@khairiyusoff5040
@khairiyusoff5040 2 ай бұрын
It's inspiring to see how experience can simplify your workflow! Ironically, as a newbie with 2 years of experience, I find that I often need to rely on all the new tools out there to be a good developer.
@MichaelKire
@MichaelKire 2 ай бұрын
@@khairiyusoff5040 I think its because you get to a point where you know how the code is supposed to behave and know how to code around potential bottlenecks or problematic areas. Which also means that when you do run into bugs, your instincts tell you exactly where the problems might lie and all you need to do is to verify which one of them gives you the wrong data, needs a filter or what it is. But please use the tools you want to use that can help you not only fix the bugs but also learn whats going on “behind the scenes”. That, in my opinion, is one of the most valuable skills to have in this programming world. Knowing something as “simple” as why you cannot add two decimal point numbers together and then expect the result to be correct, or that most react components can and should be done without useEffect, because using useEffects will add several re-renders and you cannot expect the correct data from the get go, delaying everything below it. Essentially in React you are fighting against creating re-renders. There are instances where we actually go “around” some systems and get their data directly from cookie/storage on load, because otherwise we would have to wait on them spinning up first, delaying everything by several renders / miliseconds.
@yt-sh
@yt-sh 2 ай бұрын
awesome, we need more senior developer type videos
@shainemamigo7133
@shainemamigo7133 2 ай бұрын
I just wanna say thank you bro , been watching your vids during my days as practicing coding and finally got a junior dev position.
@vishalsinghpanwar2972
@vishalsinghpanwar2972 2 ай бұрын
more senior dev type videos please, helps a lot to build intuition, learning right way to think and muscle memory for resolving stuff right from the beginning! Super helpful ❤❤❤❤❤
@LukeLogan-xr7pr
@LukeLogan-xr7pr Ай бұрын
This is great- Im a senior dev (10 years), but the biggest challenge for debugging react apps now is the number of packages that use context to wrap around the parent component, and screws up normal rendering and react behavior. It can be really challenging to see what caused a re-render: css, context, props, hooks, etc. Then, using refs throughout adds another pile of complexity.
@ken_bekov
@ken_bekov 2 ай бұрын
At last, a useful content without clickbait name. That's why I subscribed this channel initially. Good job!
@philipfisher8853
@philipfisher8853 2 ай бұрын
😂😂
@patrykkuniczak2516
@patrykkuniczak2516 2 ай бұрын
I was using it many times, but i haven't known this tool have that much features. Thank you for this video ❤
@Luunaquedateluuna
@Luunaquedateluuna 26 күн бұрын
I started learning Javascript and coding in general a year ago. Now I'm working as a junior web dev, all that I've ever needed was and still is console log.
@fahadrx8fy
@fahadrx8fy 2 ай бұрын
Amazing video. I always thought that react dev tools would be kind of hard to use and understand but this video has proved otherwise. Now I find them much easier to learn. thank you.
@HHJoshHH
@HHJoshHH 2 ай бұрын
Probably the best actual teaching channel for JS devs besides Dave Gray or Kevin Powell the css master. Great job as always Kyle! Sub 4 life!
@wizardos2011
@wizardos2011 2 ай бұрын
Always I learn with yours videos, just the essential and simplify version, good job!!!
@issiagaconde
@issiagaconde 2 ай бұрын
Oooooohhhhh yes you're a genius. I was searching for this kind of tutorial. Merci beaucoup ❤❤❤
@vadiks20032
@vadiks20032 2 ай бұрын
what exactly is genous about using debugging tools
@yashsharma6112
@yashsharma6112 2 ай бұрын
Great tips. Loving your videos from past 2 years. Always learns something new
@jason_v12345
@jason_v12345 2 ай бұрын
I just commented the same thought. I wonder if it's because with more experience our code tends to be less convoluted and also we have an overall better sense of where the problems likely lie.
@Alexanderthenotsobad
@Alexanderthenotsobad 2 ай бұрын
I have been following this "kid" for so long, but I'm only now starting to fully understand all his "black magic". Thank you for all your vids, even the ones I had to watch over and over, and even the ones I could never fully grasp. To all the OGs arguing that they know better because they have long-term experience that trumps modern gadgetry. You're right. Back in the day, we used to set up breaks, and have to manually parse through the code, variables, functions, and the like to see what was what, and what was breaking where. Remember, this is a new generation of coders who grew up with more precise tools. That being said, that's the main reason I have not been able to keep up with a great deal of this modernity. Sometimes a simple console.log does do the trick.
@JuanGómezCarrillo
@JuanGómezCarrillo 2 ай бұрын
Great job as always!!! I personally would have explained a bit more about the Profiler. There're indeed no really good resources about this tool on the web and having a real-time app analysis would be great and very instructive.
@markchen6549
@markchen6549 2 ай бұрын
Thanks, this saved my career as a frontend engineer
@binhminhtran4605
@binhminhtran4605 2 ай бұрын
Very useful, I use these a lot, if you have a big project with tons of deep-nested components, without these tools it would take you a lot of time to debug, especially when working with Promise and API
@jaydeep-p
@jaydeep-p 2 ай бұрын
I never knew react dev tools were so useful!!!
@dizzland
@dizzland 2 ай бұрын
a Ton of very useful information for getting into React debugging
@codercoffeer
@codercoffeer 2 ай бұрын
thanks great video, would love to see videos about how react handles ui updates and more advanced behind the scene stuff
@darkwoodius
@darkwoodius 2 ай бұрын
Priceless advices, each time. Thanks and congrats mate
@codercoffeer
@codercoffeer 2 ай бұрын
thanks great video, would love to see how react works in detail and why sometimes ui delegates
@michaelmenard8614
@michaelmenard8614 8 күн бұрын
While I agree with most of the comments (the ones I read) I tend to use logging more often than not... but some times that isn't an option. It is good to have these tools in your browser. I do use the dev tools all the time too.
@sadigulbeystudent6664
@sadigulbeystudent6664 2 ай бұрын
I couldn't see the connection between seniority and using dev tools. Great video though. Hope we will see more.
@maxwellcoding
@maxwellcoding Ай бұрын
Would be awesome to see something similar, but for React Native.
@genshian
@genshian 2 ай бұрын
Love this! BUT, here is some constructive feedback... Stop with the clickbait titles, and FOMO material to scare people to learn concepts. I have to always filter out so many parts of your messaging in my head to ensure I'm learning this because I want to vs. doing it because I'll be useless otherwise. Focus on more objective content, let your viewers decide the value of it and for you not to state what the industry is based on your personal opinion on how it should be. Your standard is way to high (which is why your content is good), but as I can see in the comments your statements around the industry are just not good for peoples minds. That said, no content like this online rn, so I'll keep watching you!
@collinsk8754
@collinsk8754 2 ай бұрын
A master class! Great tutorial!
@herozero777
@herozero777 2 ай бұрын
Thanks man for this great tutorial!
@dragonburger5676
@dragonburger5676 2 ай бұрын
Amazing tutorial Kyle! Thank you
@MaylorTaylor
@MaylorTaylor 2 ай бұрын
I would love to see these tools on a more robust React app. Like in a more real-world setting
@darshitgajjar5199
@darshitgajjar5199 6 күн бұрын
please make more videos brother. I am big fan of u
@nicklowe_
@nicklowe_ 2 ай бұрын
Senior dev here, never needed more than console logs in 3 years of tech leading
@vigikaran
@vigikaran 2 ай бұрын
The tools he is explaining are for productive senior devs. not for the classic senior devs
@nicklowe_
@nicklowe_ 2 ай бұрын
@@vigikaran aww you’re cute
@ysilavi
@ysilavi 2 ай бұрын
Nice job! What colorscheme did you use?
@kanstantsinhrytsuk7901
@kanstantsinhrytsuk7901 2 ай бұрын
Awesome! Thank you!
@upcomingprogrammer6244
@upcomingprogrammer6244 2 ай бұрын
Brother can you suggest me linkedin social login library for React with Typescript which should be freeware and can be used in production. I tried many but none of them are working.
@tradingwithwill7214
@tradingwithwill7214 9 күн бұрын
This isn't working for me. I'm using NextJS. It is server side code at the moment. I tried dev tools, and debugging with node.js server side and it ignores the breakpoints. I have a blog site that converts markdown to static files I tried editing launch.json and next.config.js for source maps etc to no avail.
@luanrv00
@luanrv00 2 ай бұрын
it is impossible to pay attention to code editor/web page while you keep bouncing your head on camera. seems those dog dolls to put over a car panel.
@ViniciusGouveia
@ViniciusGouveia 2 ай бұрын
You're amazing! A big thanks from 🇧🇷
@ekchills6948
@ekchills6948 2 ай бұрын
Too much knowledge thank youu
@OgyXD
@OgyXD 2 ай бұрын
Do you plan on making svelte/sveltekit videos?
@alternate_fantasy
@alternate_fantasy 2 ай бұрын
Overrated
@blarvinius
@blarvinius Ай бұрын
P.S. Why does strict mode render twice? Really asking...
@SalmanShaikh-q6r
@SalmanShaikh-q6r 2 ай бұрын
can I get any real time application of debugging video or example to large project ?
@sanketgawande3667
@sanketgawande3667 2 ай бұрын
Thanks man, great walkthrough.
@88RunnerBlade
@88RunnerBlade 2 ай бұрын
How do I debug the code inside of Canvas while developing 3D web/apps using Three.js, React-Three-Fiber...?
@carloslfu
@carloslfu Ай бұрын
Great stuff!
@shivanand0297
@shivanand0297 2 ай бұрын
more senior videos please
@BooksWeCanRead
@BooksWeCanRead 2 ай бұрын
This was perfect thanks so much!
@ФёдорСёмочкин
@ФёдорСёмочкин Ай бұрын
great video, thank
@mauricenoever
@mauricenoever 2 ай бұрын
Nice, can you make this video with next JS 15 and turbopack? Please
@mdwahidali6053
@mdwahidali6053 2 ай бұрын
How can we achieve the REACT/NEXTJS debugging in webstorm IDE?
@not_a_human_being
@not_a_human_being Ай бұрын
switching off "Strict Mode" is also an option though.
@davidgibradze9692
@davidgibradze9692 2 ай бұрын
Hi from Georgia🇬🇪 Can you show us your setup?👀💻🖥
@trappedcat3615
@trappedcat3615 2 ай бұрын
Junior, Senior, Manager are just payroll positions. It says nothing of your abilities to debug an app.
@Azurryu
@Azurryu 2 ай бұрын
I was in a senior position and I'm now at a company where they don't have these imaginary roles. Call me "company fish" or whatever as long it pays fair according to my experience lol.
@null_spacex
@null_spacex 2 ай бұрын
Typically a junior in any field has just started and a senior is someone who has a lot of experience. Kinda simple really.
@chess4964
@chess4964 2 ай бұрын
Come on it is just the classification so we know the experience level, dont be so butthurt with the terms.
@ashishboora3049
@ashishboora3049 2 ай бұрын
That was a click bait for new comers
@ken_bekov
@ken_bekov 2 ай бұрын
What??? Then truck, car, motorcycle are just about fuel consumption. It says nothing about their carrying capacity 😂
@channyeintun6411
@channyeintun6411 2 ай бұрын
Sounds like a click bait. No senior can avoid console log.
@harishkhojare1592
@harishkhojare1592 2 ай бұрын
Have you tried project idx?
@boomba118
@boomba118 2 ай бұрын
awesome content, thank u very much
@XxbankerboomxX
@XxbankerboomxX 2 ай бұрын
Does the nextjs debugger work for the app router?
@pulkitsharma8384
@pulkitsharma8384 2 ай бұрын
why i use components tab , my shows : chunk.... in file name , does anyone have any idea what might be wrong
@SantoshKori2602
@SantoshKori2602 2 ай бұрын
Thanks for sharing 👍
@alirezamohammadi9691
@alirezamohammadi9691 2 ай бұрын
thanks a lot for all of your usefull toturials❤,please create react hook form toturial, guys please like this comments if you wnat it to
@MirkoVukusic
@MirkoVukusic 2 ай бұрын
I've been successfully avoiding debugging tools and using console log (or variants) for over 30 years now :) Trust me, you get much more efficient with it than you think. (im not saying more than with debugging tools)
@Mari_Selalu_Berbuat_Kebaikan
@Mari_Selalu_Berbuat_Kebaikan 2 ай бұрын
Let's always do alot of good ❤ Nam myoho renge kyo
@erichepperlewp
@erichepperlewp 2 ай бұрын
I could have used this video in 2021 when I contracted for Facebook and there was really zero help from management on debugging React
@John-uz3yu
@John-uz3yu 12 күн бұрын
This youtube channel is more about selling courses that doesn't really work in real life!
@user-ev6fj5up9w
@user-ev6fj5up9w 2 ай бұрын
Bro create Penpot plugins 🎉
@HenokGebresenbet
@HenokGebresenbet 2 ай бұрын
make sure to watch this video in 0.75 playback speed
@PiyushAggarwal-hz9es
@PiyushAggarwal-hz9es 2 ай бұрын
Great stuff
@mq5432
@mq5432 2 ай бұрын
Bro this head will fall off one day I tell you💀
@Ahmed-fq3kz
@Ahmed-fq3kz 2 ай бұрын
Thanks alot
@learningwithaaron
@learningwithaaron 2 ай бұрын
u forgot to say sooner at the start "start building your dream projects SOONER" lol
@codingwithrendi
@codingwithrendi 2 ай бұрын
thanks kyle
@faizanhaider
@faizanhaider 2 ай бұрын
Thanks
@ubaidkhan426
@ubaidkhan426 2 ай бұрын
Thanks 👍
@dijiflex
@dijiflex 2 ай бұрын
This was helpful
@shinauri1
@shinauri1 2 ай бұрын
Please stop shaking your head only!
@lamhung4899
@lamhung4899 2 ай бұрын
Stop shaking your head
@yellowboat8773
@yellowboat8773 2 ай бұрын
You got 1.5 million subs but the vids are 20k views with a bunch of ai spam in the comments, what up woth that
@CrAzZyKiLleR01
@CrAzZyKiLleR01 2 ай бұрын
React is a pain. Pain to use and debug.
@GonnaLoveThis
@GonnaLoveThis 2 ай бұрын
my experience is that these tools have bugs sometimes😢.
@sudhanshugautam425
@sudhanshugautam425 2 ай бұрын
4:11 u got me here😂😂 (only Indians will understand)
@arti256
@arti256 2 ай бұрын
awesome
@sssrikanthhh
@sssrikanthhh 2 ай бұрын
@krakatoom
@krakatoom 2 ай бұрын
Not that Vue js had vue devtools for months.... lol jk. All is Javascript in its core😊
@i3looi2
@i3looi2 2 ай бұрын
Pro TIP: If you don't use REACT, you won't need to debug react. Until next time 🏃
@hosting-sample
@hosting-sample 2 ай бұрын
Hi @kyle if possible could be little bit slow like what I feel is your speaking too fast so unable to follow you
@darckhelmi5737
@darckhelmi5737 2 ай бұрын
bro i like your content but please stop moving your head .
@utkarshdhiman9680
@utkarshdhiman9680 Ай бұрын
😆
@hannai2202
@hannai2202 Ай бұрын
I spray you 😂😂😂
@capybara0612
@capybara0612 2 ай бұрын
Panjabi head live
@froggy472
@froggy472 2 ай бұрын
3 mins
@arkansavalder
@arkansavalder 2 ай бұрын
Chat gpt can debug it faster and solve it as well
@27sosite73
@27sosite73 2 ай бұрын
no, it cant
@shahbazjavedqureshi
@shahbazjavedqureshi Ай бұрын
go easy on stimulants my man, it's becoming very apparent. great video otherwise!
@andrews4379
@andrews4379 2 ай бұрын
There is no senior ... It's scam 😂 you can work 40 years.. and can be junior 😆😆
@Orcanos
@Orcanos 2 ай бұрын
low quality indian style videos as always
@trenev
@trenev 2 ай бұрын
Thanks for the helpful video, Kyle. Awesome like always. In my Vite React app my source shows as "chunk-XYQJLCXN.js?v=2ca49224:41998" or other random characters instead of the actual file name. Why does this happen and how do i address it?
@ionutsandu5913
@ionutsandu5913 2 ай бұрын
Nah! Console.log is king!
Learn React Generic Components In 6 Minutes
6:47
Web Dev Simplified
Рет қаралды 58 М.
Speed Up Your React Apps With Code Splitting
16:50
Web Dev Simplified
Рет қаралды 386 М.
Running With Bigger And Bigger Lunchlys
00:18
MrBeast
Рет қаралды 136 МЛН
«Кім тапқыр?» бағдарламасы
00:16
Balapan TV
Рет қаралды 293 М.
Inside Out 2: ENVY & DISGUST STOLE JOY's DRINKS!!
00:32
AnythingAlexia
Рет қаралды 18 МЛН
Кәсіпқой бокс | Жәнібек Әлімханұлы - Андрей Михайлович
48:57
The Most Important Skill You Never Learned
34:56
Web Dev Simplified
Рет қаралды 210 М.
Only The Best Developers Understand How This Works
18:32
Web Dev Simplified
Рет қаралды 108 М.
React visually explained: 'use client'
15:57
Delba
Рет қаралды 50 М.
Front-end web development is changing, quickly
3:43
Fireship
Рет қаралды 1,2 МЛН
JavaScript Visualized - Event Loop, Web APIs, (Micro)task Queue
12:35
Modern Data Fetching in React (Complete Guide)
16:41
Cosden Solutions
Рет қаралды 55 М.
Why Signals Are Better Than React Hooks
16:30
Web Dev Simplified
Рет қаралды 480 М.
10 common mistakes with the Next.js App Router
20:37
Vercel
Рет қаралды 220 М.
Running With Bigger And Bigger Lunchlys
00:18
MrBeast
Рет қаралды 136 МЛН