How To Debug React Apps Like A Senior Developer

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ต.ค. 2024

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

  • @alexfoxleigh9443
    @alexfoxleigh9443 2 หลายเดือนก่อน +185

    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 หลายเดือนก่อน +14

      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 หลายเดือนก่อน +7

      Thanks, I'm not alone!

    • @AbdurrahmanHafez
      @AbdurrahmanHafez 2 หลายเดือนก่อน +5

      I am a console logger too, but these tips sometime help and save some time

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

      @@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 หลายเดือนก่อน +1

      @@alexfoxleigh9443 as an architect your focus is probably on much more highlevel concepts than debugging individual react coponents 🙂

  • @jason_v12345
    @jason_v12345 2 หลายเดือนก่อน +90

    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 หลายเดือนก่อน +8

      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 หลายเดือนก่อน +3

      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.

  • @shainemamigo7133
    @shainemamigo7133 2 หลายเดือนก่อน +3

    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 หลายเดือนก่อน +6

    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 หลายเดือนก่อน +1

    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.

  • @yt-sh
    @yt-sh 2 หลายเดือนก่อน +25

    awesome, we need more senior developer type videos

  • @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.

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

    At last, a useful content without clickbait name. That's why I subscribed this channel initially. Good job!

  • @Alexanderthenotsobad
    @Alexanderthenotsobad 2 หลายเดือนก่อน +1

    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.

  • @fahadrx8fy
    @fahadrx8fy 2 หลายเดือนก่อน +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.

  • @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 ❤

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

    Always I learn with yours videos, just the essential and simplify version, good job!!!

  • @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!

  • @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.

  • @issiagaconde
    @issiagaconde 2 หลายเดือนก่อน +3

    Oooooohhhhh yes you're a genius. I was searching for this kind of tutorial. Merci beaucoup ❤❤❤

    • @vadiks20032
      @vadiks20032 2 หลายเดือนก่อน +1

      what exactly is genous about using debugging tools

  • @yashsharma6112
    @yashsharma6112 2 หลายเดือนก่อน +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.

  • @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

  • @michaelmenard8614
    @michaelmenard8614 7 วันที่ผ่านมา

    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.

  • @jaydeep-p
    @jaydeep-p 2 หลายเดือนก่อน +1

    I never knew react dev tools were so useful!!!

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

    a Ton of very useful information for getting into React debugging

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

    Priceless advices, each time. Thanks and congrats mate

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

    A master class! Great tutorial!

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

    Would be awesome to see something similar, but for React Native.

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

    thanks great video, would love to see videos about how react handles ui updates and more advanced behind the scene stuff

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

    Thanks man for this great tutorial!

  • @nicklowe_
    @nicklowe_ 2 หลายเดือนก่อน +21

    Senior dev here, never needed more than console logs in 3 years of tech leading

    • @vigikaran
      @vigikaran 2 หลายเดือนก่อน +1

      The tools he is explaining are for productive senior devs. not for the classic senior devs

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

      @@vigikaran aww you’re cute

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

    Amazing tutorial Kyle! Thank you

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

    thanks great video, would love to see how react works in detail and why sometimes ui delegates

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

    Awesome! 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

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

    You're amazing! A big thanks from 🇧🇷

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

    I couldn't see the connection between seniority and using dev tools. Great video though. Hope we will see more.

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

    Great stuff!

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

    Too much knowledge thank youu

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

    Thanks man, great walkthrough.

  • @darshitgajjar5199
    @darshitgajjar5199 6 วันที่ผ่านมา

    please make more videos brother. I am big fan of u

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

    Nice job! What colorscheme did you use?

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

    Do you plan on making svelte/sveltekit videos?

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

    This was perfect thanks so much!

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

    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!

  • @ФёдорСёмочкин
    @ФёдорСёмочкин หลายเดือนก่อน

    great video, thank

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

    more senior videos please

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

    awesome content, thank u very much

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

    Thanks for sharing 👍

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

    switching off "Strict Mode" is also an option though.

  • @MirkoVukusic
    @MirkoVukusic 2 หลายเดือนก่อน +1

    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)

  • @PiyushAggarwal-hz9es
    @PiyushAggarwal-hz9es 2 หลายเดือนก่อน

    Great stuff

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

    Nice, can you make this video with next JS 15 and turbopack? Please

  • @Ahmed-fq3kz
    @Ahmed-fq3kz 2 หลายเดือนก่อน

    Thanks alot

  • @faizanhaider
    @faizanhaider 2 หลายเดือนก่อน +1

    Thanks

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

    thanks kyle

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

    Let's always do alot of good ❤
    Nam myoho renge kyo

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

    Thanks 👍

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

    Hi from Georgia🇬🇪 Can you show us your setup?👀💻🖥

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

    make sure to watch this video in 0.75 playback speed

  • @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

  • @user-ev6fj5up9w
    @user-ev6fj5up9w 2 หลายเดือนก่อน +1

    Bro create Penpot plugins 🎉

  • @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 วันที่ผ่านมา +1

    This youtube channel is more about selling courses that doesn't really work in real life!

  • @luanrv00
    @luanrv00 2 หลายเดือนก่อน +3

    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.

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

    Have you tried project idx?

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

    P.S. Why does strict mode render twice? Really asking...

  • @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.

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

    How do I debug the code inside of Canvas while developing 3D web/apps using Three.js, React-Three-Fiber...?

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

    awesome

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

    u forgot to say sooner at the start "start building your dream projects SOONER" lol

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

    How can we achieve the REACT/NEXTJS debugging in webstorm IDE?

  • @mq5432
    @mq5432 2 หลายเดือนก่อน +3

    Bro this head will fall off one day I tell you💀

  • @SalmanShaikh-q6r
    @SalmanShaikh-q6r 2 หลายเดือนก่อน

    can I get any real time application of debugging video or example to large project ?

  • @trappedcat3615
    @trappedcat3615 2 หลายเดือนก่อน +76

    Junior, Senior, Manager are just payroll positions. It says nothing of your abilities to debug an app.

    • @Azurryu
      @Azurryu 2 หลายเดือนก่อน +11

      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 หลายเดือนก่อน +7

      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 หลายเดือนก่อน +6

      Come on it is just the classification so we know the experience level, dont be so butthurt with the terms.

    • @ashishboora3049
      @ashishboora3049 2 หลายเดือนก่อน +1

      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 หลายเดือนก่อน +7

    Sounds like a click bait. No senior can avoid console log.

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

    Does the nextjs debugger work for the app router?

  • @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.

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

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

    This was helpful

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

    4:11 u got me here😂😂 (only Indians will understand)

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

    why i use components tab , my shows : chunk.... in file name , does anyone have any idea what might be wrong

  • @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

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

    my experience is that these tools have bugs sometimes😢.

  • @shinauri1
    @shinauri1 2 หลายเดือนก่อน +3

    Please stop shaking your head only!

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

    Stop shaking your head

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

    Pro TIP: If you don't use REACT, you won't need to debug react.
    Until next time 🏃

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

    React is a pain. Pain to use and debug.

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

    Not that Vue js had vue devtools for months.... lol jk. All is Javascript in its core😊

  • @hosting-sample
    @hosting-sample 2 หลายเดือนก่อน +1

    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 หลายเดือนก่อน +4

    bro i like your content but please stop moving your head .

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

    Panjabi head live

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

    3 mins

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

    Chat gpt can debug it faster and solve it as well

    • @27sosite73
      @27sosite73 2 หลายเดือนก่อน +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!