#1: TanStack Query Tutorial in Hindi: Introduction to React Query & it's Advantages Over React❤️‍🔥

Поділитися
Вставка
  • Опубліковано 18 гру 2024

КОМЕНТАРІ • 72

  • @ThapaTechnical
    @ThapaTechnical  2 місяці тому +17

    Hope you love the video & Learn something new ❤‍🔥

    • @ryhih1833
      @ryhih1833 2 місяці тому

      @@ThapaTechnical yes

    • @InamKhan-b1h
      @InamKhan-b1h 2 місяці тому

      yes sir

    • @bilalarshad2092
      @bilalarshad2092 2 місяці тому +1

      Yes Sir and Thanku Sir for TanStack
      Sir after TanStack, plss start Redux Toolkit and at least 1 Project bassed on RTK

    • @viraljain9197
      @viraljain9197 2 місяці тому

      Excited for this series. thank you for creating this amazing series.

  • @ryhih1833
    @ryhih1833 2 місяці тому +7

    In our life your are the best teacher

  • @AtrangiDun
    @AtrangiDun 4 години тому

    Sir ye Traffic management ke liye use kar sakte hai kya?

  • @nitin7909
    @nitin7909 2 місяці тому +2

    Power React Query my favorite library ❤

  • @pokescreation
    @pokescreation 2 місяці тому

    Yess sir,yhi pd rha tha mai abhi.Thanku

  • @charuhas1602
    @charuhas1602 2 місяці тому

    Most waited series, Thanks thapa

  • @Fun044
    @Fun044 2 місяці тому

    Thank you very much Sir for sharing such Important topic so easily 😮

  • @anujpal574
    @anujpal574 2 місяці тому

    Thank You sir for this beautiful series❤‍🔥

  • @pxycknomdictator4483
    @pxycknomdictator4483 2 місяці тому +1

    Sir believe nhi ho raha k Tank stack query ki series bhi agai

  • @LolProgrammer
    @LolProgrammer 2 місяці тому

    Brother we want a new ecommerce site project using React JS with a fake api in one video . Btw Thank you brother for this video. I love it ❤️

  • @csebadnam_engineear16
    @csebadnam_engineear16 2 місяці тому

    React series really awesome ❤

  • @jagjitsingh6144
    @jagjitsingh6144 2 місяці тому

    Keep it up bro 💪💪💪 i am waiting for next video 🎉🎉🎉🎉

  • @anantbisht6183
    @anantbisht6183 2 місяці тому +1

    Thankyou for this❤

  • @mayankbhushan5651
    @mayankbhushan5651 2 місяці тому

    Thanks for being soo amazing always in ur videos 💓💓

  • @amitagarwal446
    @amitagarwal446 2 місяці тому

    Most awaited video ❤

  • @locallinuxuser
    @locallinuxuser 2 місяці тому

    thank you bhaiya, and also please explain react table

  • @ItachiUchiha-ix5sg
    @ItachiUchiha-ix5sg 2 місяці тому

    Seems interesting sir

  • @abubakarkhan4732
    @abubakarkhan4732 2 місяці тому

    Love You Bro Waiting For World BEST NEXT JS Full Stack
    Like For Full Stack Next JS

  • @awesomeguy6427
    @awesomeguy6427 2 місяці тому

    Thapa is Sigma for real.

  • @AbdullahAnsari-tl7bv
    @AbdullahAnsari-tl7bv 2 місяці тому +1

    Sir need Redux toolkit & Love from Pakistan❣

  • @ketanthorat4337
    @ketanthorat4337 2 місяці тому +4

    Need redux video

  • @clipHub02
    @clipHub02 2 місяці тому +1

    Sir, need vedios for nextjs or typescript.

  • @awesomeguy6427
    @awesomeguy6427 2 місяці тому

    Best series

  • @anshulshrivas-hr4bu
    @anshulshrivas-hr4bu 2 місяці тому

    sir RTK mai bhi toh createasyncThunk hai jisse hum api fetch kr sktte hai
    if i know the RTK then mujhe yeh react query krna chaiye ??

    • @sujoykrhaldar
      @sujoykrhaldar 2 місяці тому

      if company uses react q in the proj then you have to learn it

  • @ErrorEagle-z6r
    @ErrorEagle-z6r 2 місяці тому

    thanku thapa bhaiya

  • @Midnightstudy247
    @Midnightstudy247 2 місяці тому

    sir salesforce me kya future hai?

  • @rezwanulhaque9935
    @rezwanulhaque9935 2 місяці тому

    great

  • @codexAbhi007
    @codexAbhi007 2 місяці тому

    ek bar shoutout de dijiye bohut bara fan hu apke

  • @SamruddhaShah
    @SamruddhaShah 2 місяці тому

    Thanks

  • @Soniajutt-nd5tf
    @Soniajutt-nd5tf 2 місяці тому

    Chen tpak dam dam❤❤

  • @rahulchowdhury4439
    @rahulchowdhury4439 2 місяці тому

    I have never heard about it before.

  • @roseekduwal4380
    @roseekduwal4380 2 місяці тому

    Can you tell me when to choose redux and when to choose tanstack query.?
    And why prefer tanstack query over redux or RTK query?
    for large project which one to choose?

    • @sujoykrhaldar
      @sujoykrhaldar 2 місяці тому +1

      react query ( aka tanstack query ) or RTK query or swr both are same, they are used for fetching data, caching data basically its client side data fetching lib with some cool features like caching optimistic UI updates and many more. u can say its used for server side state management ( fetching data from server, states like data, loading, error, updates etc )
      now redux toolkit ( toolkit and tk query are not same, zustand ) context API ( native react feature) are used for client side state management purpose. manage a global state from where we can use saved data( fetching data from server using react query or rtk query or native useeffect approach and saved for one instance meaning after refresh data will be lost so have to fetch again) across the applications, like nested components,
      hope it clears your doubt

    • @sujoykrhaldar
      @sujoykrhaldar 2 місяці тому +1

      For large applications, u will have to tackle 2 things 1. data fetching - u can use native approach like useeffect fetch etc or use react query or swr or rtk query, these lib will provide lots of features.
      2. state menegement - which is necessary, u can need to use any state mng libs like redux toolkit / zustand or use native context api

  • @riteshgoswami1596
    @riteshgoswami1596 2 місяці тому

    Need zustand state management tools video

  • @Jaswinder_Singh09
    @Jaswinder_Singh09 2 місяці тому

    Sir react redux ki videos kab aayengi

  • @satishkumarmeher8899
    @satishkumarmeher8899 2 місяці тому +1

    Sir, is this alternative of redux?

    • @ThapaTechnical
      @ThapaTechnical  2 місяці тому

      Not exactly, but yes, when it comes to handling the server side state, then for sure

    • @satishkumarmeher8899
      @satishkumarmeher8899 2 місяці тому

      @@ThapaTechnical yes sir 😍
      Sir, is there any upcoming videos on Redux

  • @xyonxyt9170
    @xyonxyt9170 2 місяці тому

    Thank you sir

  • @biswajitbiswas6360
    @biswajitbiswas6360 2 місяці тому

    Sir node express ka course kab laoge bolo na

  • @mr.arbazansari
    @mr.arbazansari 2 місяці тому

    sir, please start new series on NextJS

  • @Ympatel1912
    @Ympatel1912 23 дні тому

    React interview questions per video upload karo sir , please

  • @ajitrai1945
    @ajitrai1945 2 місяці тому

    can we use this same for react native😮

  • @onthefire6893
    @onthefire6893 2 місяці тому

    Hello bhaiya please node and express ka bhi course layiye please bhaiya 🙏🙏

  • @Haider-mf8eg
    @Haider-mf8eg 2 місяці тому

    Love from Pakistan

  • @kakdiyaamit6625
    @kakdiyaamit6625 2 місяці тому

    we can use tanstack in nextjs?

  • @xyonxyt9170
    @xyonxyt9170 2 місяці тому

    Love you sirr

  • @shivammankar3859
    @shivammankar3859 2 місяці тому

    Bahiya aap ne Redux ka lecture nahi dala

  • @vaibhavgodase9733
    @vaibhavgodase9733 2 місяці тому +2

    Suggetion:
    Your videos not getting enough Views , because of VS studio theme and font size,
    Change to dark , same like chai aur code

  • @Rsh_technical
    @Rsh_technical 2 місяці тому

    next.js ssr kya hai fir

  • @sunnyy6295
    @sunnyy6295 2 місяці тому +1

    Why will you ever cache api data.. we need updated list in a table to show always right that's why we use cache control as no cache. I didn't understand this.

  • @RetroRivals-d9d
    @RetroRivals-d9d 2 місяці тому

    Next js strat

  • @suruabhisekh
    @suruabhisekh 2 місяці тому

    need redux tool kit video

  • @good114
    @good114 2 місяці тому +1

    🙏🙏❤❤

  • @nitishsingh925
    @nitishsingh925 2 місяці тому +1

    😊

  • @mdmostafizurrahman9275
    @mdmostafizurrahman9275 9 днів тому

    I write coding using AI , I don't need to write manually .

  • @SomeTimeForFun0
    @SomeTimeForFun0 2 місяці тому

    Sir, please start Next js after this series..
    Guys do like, subscribe and share this channel.

  • @SnehalPawar-p9p
    @SnehalPawar-p9p 2 місяці тому

    Redux ki video leo

  • @biswajitbiswas6360
    @biswajitbiswas6360 2 місяці тому

    Hamara next year se placement hone bala hai

  • @priyadarshi5730
    @priyadarshi5730 2 місяці тому

    ❤❤❤

  • @CodeWithZanzi
    @CodeWithZanzi 2 місяці тому

    It can replace redux 😅

    • @amitavasengupta5580
      @amitavasengupta5580 2 місяці тому

      How? Tanstack is great for data fetching, caching and server side management, it sure can replace useEffect but don't think that it can replace redux/mobix/zustand

    • @sujoykrhaldar
      @sujoykrhaldar 2 місяці тому

      redux is used for diff perpose and react query is used for diff purpose. like do you use context for data fetching ? or do you use fetch for state management ?