3 Ways to Make React App FASTER

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

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

  • @anuj7286
    @anuj7286 ปีที่แล้ว +2

    Thank you piyush i was thinking this video is missing. Great work man!

  • @chinmaysawant1343
    @chinmaysawant1343 ปีที่แล้ว +3

    Great stuff. One request from my side suppose I’m working as a react developer. What kind of tasks/ stories I’ll get assigned. Talking from a live project perspective. This will help me in interviews

    • @JTtimeCoding
      @JTtimeCoding 10 หลายเดือนก่อน +1

      Debugging, mostly styling issues for a newbie. Then slowly slowly you will be given tasks involving data fetched by API, then custom hooks or API hooks. After that you will start making new base components.

  • @Niamudeen
    @Niamudeen ปีที่แล้ว +1

    Best stuff I learned about React. Your way of explanation is amazing bro. 💪

  • @vaibhav_shanker
    @vaibhav_shanker 8 หลายเดือนก่อน +7

    11:41, you must be using React in StrictMode, in strict mode React renders the application twice, that's why listener is being added twice,
    rendering app on the server, doesn't have anything to do with adding listener on the client side
    any piece of js makes an effect on client when it is executed on the client

  • @csfahad
    @csfahad ปีที่แล้ว +1

    A guided walkthrough and important features about using appwrite

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

    Your teaching skill is very smooth and sensational. Thanks 🙏

  • @devsDojo
    @devsDojo 10 หลายเดือนก่อน +1

    you just earned a subscriber...very good pattern bro and nicely explained 🔥🔥

  • @MrSaint-ch6xn
    @MrSaint-ch6xn ปีที่แล้ว

    Right now I was facing the same react taking time to load issue and your video recommended.. informative❤

  • @amanmishra-vt8hk
    @amanmishra-vt8hk 8 หลายเดือนก่อน

    I am looking your channel for the first time and now I subscribed to your channel

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

    very good explianation, loved your teaching, keep it up. Thanks

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

    Your teaching is soo good. But please complete a playlist before starting the other. Now, we have to surf for full playlists again.

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

    Great work Man !

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

    Very Well explained. Very useful will definitely use that on my current project 🤘🏻

  • @aadarshgurug
    @aadarshgurug ปีที่แล้ว

    Need more videos like this , this was great

  • @________.pathfinder
    @________.pathfinder ปีที่แล้ว

    Thank you so much man for providing such content..

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

    such a great explainnation. love your vids

  • @rajatpatialvi
    @rajatpatialvi ปีที่แล้ว +1

    Great Clarification 🤩🤩

  • @lovishduggal9064
    @lovishduggal9064 ปีที่แล้ว

    React under the hood and design patterns, web security, next js, ci / cd pipeline with gitthub actions, caching with redis, testing with playright {je sab topics pr future mai videos jrur bnana bhaiya ji kyu ki je production level pr use hoti hai }

  • @surajyadav4586
    @surajyadav4586 ปีที่แล้ว +1

    Great content, you made it easy

  • @siddharth7261
    @siddharth7261 ปีที่แล้ว

    Hume largefile daalni chahiye thi na dependency me, taaki jab bhi large file change ho tab hum length dobara check kare

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

    Amazing video bhaiya ! 👍

  • @ashishbhatt4821
    @ashishbhatt4821 ปีที่แล้ว

    As always Effective Video❤

  • @varunsalat619
    @varunsalat619 ปีที่แล้ว +1

    great work bro please make more videos about react-app optimization 😇👏

  • @prashlovessamosa
    @prashlovessamosa ปีที่แล้ว +2

    Hello piyush sir
    one request
    Please make project using socket stuff it would be helpful.

  • @subhashgn1775
    @subhashgn1775 ปีที่แล้ว

    Absolute master class...👌👌

  • @deependu__
    @deependu__ ปีที่แล้ว

    To the point video. Awesome❤

  • @AvradipDas-ss7tm
    @AvradipDas-ss7tm 6 หลายเดือนก่อน

    In the last example , the same result is produced without the useCallback :
    const MyComponent = (props)=>{
    const loadMessage = ()=>{
    console.log("loaded")
    }
    useEffect(()=>{
    console.log(props.state)
    window.addEventListener("load",loadMessage)
    return ()=>{
    window.removeEventListener("load",loadMessage)
    }
    },[props.state,loadMessage])
    return(
    Count is {props.state}
    )
    }
    Can you please explain why this works as well ?

  • @julio.canezin
    @julio.canezin 3 หลายเดือนก่อน

    to make node faster change it to php swoole rs. Benchmark reach 5x faster...

  • @m-series719
    @m-series719 4 วันที่ผ่านมา

    bro is this playlist is enough for interview?

  • @nabinsaud4688
    @nabinsaud4688 ปีที่แล้ว

    By using the vite for faster and rapid development

  • @ravikumar-gp6ui
    @ravikumar-gp6ui 8 หลายเดือนก่อน +1

    length already take O(n) , why we need to write for loop ?

  • @frankbuzzz
    @frankbuzzz 5 หลายเดือนก่อน +1

    When I continue using my app the app runs fine but when I don't use it for more than 5 minutes it slows down for a minute and then it seems to be running normally as before. I made my app react native. While its backend code is written in codeignitor4, the data from PHP and API is being fetched at the right time for viewing from postman, what is the problem, why is my app getting slow.

  • @jeetsikder5912
    @jeetsikder5912 ปีที่แล้ว

    Awesom video bro and whitch vs code theam you are using?

  • @saksham_1612
    @saksham_1612 ปีที่แล้ว

    Amazing stuff ❤

  • @vashishtsuryawanshi149
    @vashishtsuryawanshi149 ปีที่แล้ว

    Hi piyush sir,
    one request,
    Please make series on React Native.

  • @Ahmad-vm9pb
    @Ahmad-vm9pb 2 หลายเดือนก่อน

    amazing!!!

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

    great video sir

  • @shubhamgupta-bl1tr
    @shubhamgupta-bl1tr ปีที่แล้ว

    Need such more tutorials

  • @iamsouravganguli
    @iamsouravganguli ปีที่แล้ว

    Thank you bro❤

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

    very useful video

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

    my laptop heats up when I use REACT even though it is good , what should I do

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

    thanks sir best teachar

  • @testaccount9420
    @testaccount9420 ปีที่แล้ว

    Thanks ❤

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

    amazing content

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

    Sare wahi cheezein batate hain , ek route bna ke dikha dete hain. Baki inko pta nhi hota jab app large ho jati hai

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

    Sir ji reactjs me mai posts render kar raha tha to agar image size 2Mb tak pahuch jata hai to jaise hi scroll karte karte us image ke exdam paas aata hu to lag kar jata hai. why? Ye sirf computer screen me hi ho raha hai. mobile screen me smooth chal raha ha. Mera pc bhi capable hai with 16Gb ram and 12400F ulta mobile low end hai usme lag nahi kar raha. Kyo? Bahut paresan su aaj.

  • @talibhusain3335
    @talibhusain3335 ปีที่แล้ว

    Bhai ese optimization ki dusri video bhi banao naa

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

    thank you

  • @chandansingh-sb3il
    @chandansingh-sb3il ปีที่แล้ว

    build size reduce karne ka tumara koi video hai kya

  • @Beawer_help_0
    @Beawer_help_0 ปีที่แล้ว

    Usefull information

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

    Lovely bhai🤩🧐😇

  • @iamakashkumarram
    @iamakashkumarram ปีที่แล้ว

    Sir postgraceSQL and GraphQL ke upar full course laiye.

  • @Rehmaan.
    @Rehmaan. ปีที่แล้ว

    Which theme are you using in vs code?

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

    please make videos on vite

  • @Sandeep-zd6dq
    @Sandeep-zd6dq ปีที่แล้ว

    Why event listeners is even registered one time if we are cleaning it, how it remain there 😅

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

      Because he used useCallback hook.Which help the browser to cache the function even though he removed it

  • @udayasishbora2089
    @udayasishbora2089 ปีที่แล้ว

    Nice concepts

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

    The Three Optimizations are as follows:-
    1. For Components that are bulky instead of importing them directly what you can do is you can use lazy loading and you can wrap that Heavy Component around the Suspense Component.
    2. You can use useMemo hook in order to memoize heavy calculations in order to improve the complexity on re renders
    3. CLeaup in use effect.

  • @aviruppaul4473
    @aviruppaul4473 ปีที่แล้ว

    Aaj open source contribution pe live class ayega

  • @Pupu-xr1ju
    @Pupu-xr1ju 9 หลายเดือนก่อน

    Please any who knows
    Kiya kisi component ko bhi memories kiya jasakta hai?

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

      yaha bhai ne calculation ko memoize kiya h, Component ko nahi
      or question hai apka k kisi bhi component ko memoize kar sakte hain to uska answer h, Haa
      but memoize ka kaam h jab tak props change nahi honge component k tab tak component ko re-render nahi karega,
      but along side you will definitely face a scenario jaha aapne saare props thik se use kare honge pr handler me sidha sidha function pass kar doge as prop
      waha memoize, ka effect khatam hota dikhayi dega,
      but dont worry, this will be the time, when you should learn about useCallback hook

  • @debjyotimondal270
    @debjyotimondal270 ปีที่แล้ว

    Helpful

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

    memoize*

  • @UsmanCodeLab
    @UsmanCodeLab ปีที่แล้ว

    Sir start
    =×Prisma
    =×Graphql
    =×story books
    please😢

  • @ankushladani496
    @ankushladani496 ปีที่แล้ว +1

    ❤❤ NICE VIDEO ❤❤

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

    Super🎉

  • @RohitSaini-xh3ll
    @RohitSaini-xh3ll 5 หลายเดือนก่อน +1

    Everything is good except "TUM", agreed?

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

    source code

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

    Amazingg

  • @pradeepkumar-em5re
    @pradeepkumar-em5re ปีที่แล้ว

    Sir also make videos on rendering mern project on cyclic vs vercel vs render and how to solve issues while getting error due to deployment
    _________________++++++++++_____________________________________

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

    What language is this in? xD

  • @prashlovessamosa
    @prashlovessamosa ปีที่แล้ว

    FIRST 🥇

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

    W-T-F why do you go back and forth from two languages like that? horrible presentation

  • @polymath-403
    @polymath-403 11 หลายเดือนก่อน

    Maannn This is Super cool ❤‍🔥