Build and Deploy a React Cryptocurrency App and Master Redux Toolkit in One Video

Поділитися
Вставка
  • Опубліковано 16 сер 2024
  • Learn advanced React best practices, State Management using Redux Toolkit, UI Creation using Ant Design, creating charts using Chart.js, and fetching data from multiple sources using RapidAPI while building the best Cryptocurrency App on UA-cam - Cryptoverse.
    💻JS Mastery Pro - jsmastery.pro?discount=youtube
    ✅ A special UA-cam discount code is automatically applied!
    ⭐ RapidAPI - rapidapi.com/h...
    ⭐ CoinRanking API - rapidapi.com/C...
    ⭐ Bing News Search - rapidapi.com/m...
    Since the 1st of January 2022 you'll have to make the following changes to the code:
    1. Change the api v1 to v2 on RapidAPI
    2. In new version, to access the exchanges endpoint you'll need a premium plan
    3. Change the coin price history endpoint to the following - `coin/${coinId}/history?timeperiod=${timeperiod}`
    4. Change coin id to coin uuid in cryptocurrencies.jsx file
    5. In cryptoDetails.jsx file make sure to match the stats and genericStats values
    📚 Materials/References:
    GitHub Code (give it a star ⭐): github.com/adr...
    Styles & Other Code: gist.github.co...
    cryptocurrency.png: i.ibb.co/Z11pc...
    news image URL: www.bing.com/t...
    📧 Join our JavaScript Mastery's Newsletter on Web Development, JavaScript & React to get exclusive programming guides, tips & tricks, and entire e-books: resource.jsmas... 🔥
    ⭐Hostinger is my personal recommendation for hosting - www.hostinger....
    Use the code JAVASCRIPTMASTERY to save up to 91% on all yearly hosting plans.
    💻 Master JavaScript: www.completepa...
    Use the special promo code "UA-cam" on checkout to save $60!
    ❤️ Support JavaScript Mastery & Suggest Future Videos:
    BuyMeACoffe: www.buymeacoff...
    Patreon: / javascriptmastery
    🌎 Find Me Here:
    Discord Group: / discord
    Instagram: / javascriptmastery
    Twitter: / jsmasterypro
    💼 Business Inquiries:
    E-mail: javascriptmastery00@gmail.com
    Time Stamps 👇
    00:00:00 Intro
    00:02:06 RapidAPI
    00:03:25 Layout
    00:32:59 Homepage
    00:36:31 Redux Toolkit & API Dev
    00:53:32 Cryptocurrencies
    01:11:28 Crypto News
    01:32:02 Crypto Details
    01:56:24 Chart
    02:01:37 Mobile navigation
    02:06:22 Challenge

КОМЕНТАРІ • 1,6 тис.

  • @javascriptmastery
    @javascriptmastery  Рік тому +30

    At 44:45 in the video, it's not necessary to create a createRequest function, instead just add a prepareHeaders function to the fetchBaseQuery function as explained here redux-toolkit.js.org/rtk-query/api/fetchBaseQuery#setting-default-headers-on-requests

    • @shubhamumbarje
      @shubhamumbarje Рік тому +1

      Please help stuck on this
      Module parse failed: Unexpected token (51:12)
      You may need an appropriate loader to handle
      this file type. const globalStats
      data?. data?.stats;

    • @AliAhmadae121
      @AliAhmadae121 Рік тому +1

      Brother you are Amazing i want to be coding like u

    • @stevechen2608
      @stevechen2608 Рік тому

      @@shubhamumbarje hey bro, i got the same issue here, the data were fine before the const globalStats, i wondered have you solve this problem

    • @subhamhaldar1008
      @subhamhaldar1008 Рік тому

      @@shubhamumbarje add middleware it will solve every problem u got

    • @saurabhverma8236
      @saurabhverma8236 Рік тому

      @@stevechen2608 even I am facing the same issue, can u help? if you have resolved the issue.

  • @hmshuvo2332
    @hmshuvo2332 2 роки тому +296

    Please Continue doing this for us! This means a lot to aspiring developers like me. We need more people like you! Thanks so much for all those awesome stuff!!!

    • @javascriptmastery
      @javascriptmastery  2 роки тому +19

      Thank you so much! 😊

    • @hmshuvo2332
      @hmshuvo2332 2 роки тому +2

      @@javascriptmastery Hey, one question. I working on your travel advisor app. I created the google map api key but it isn't working and says in the console that I will need to enable billing cycle. But, in the video you seemed to work with it without doing billing or putting in your credit card. So, why it's not working on my end. IS there any way that I can work with it without putting in any credit card and enable billing. Please reply ...

    • @miguelesparza1081
      @miguelesparza1081 2 роки тому

      @@hmshuvo2332 You need to adda credit card, its free but yes you need a CCARD

    • @arunabhkumar7811
      @arunabhkumar7811 2 роки тому +1

      @@hmshuvo2332 yaa I was also facing the same error....and I didn't want to add a card in billing info that's why I dropped that project .... Do you have any other method to fix the error??

    • @abishieks8069
      @abishieks8069 2 роки тому +1

      @@arunabhkumar7811 same here!

  • @phryneas
    @phryneas Рік тому +46

    Hi, I'm the author of RTK Query. I'm happy that you are using it and creating a tutorial for it.
    Unfortunately though, that `createRequest` function that you create at 44:45 is a very bad idea. RTK Query already has an abstraction for that - the `baseQuery`. You could just pass the `headers` variable into the `fetchBaseQuery` options, or add a `prepareHeaders` function there.
    Worst case you need a feature that is not part of `fetchBaseQuery` and you could write a wrapper function around that and create your own `baseQuery`. But you should definitely not call some `createRequest` function in every baseQuery. That is exactly what `baseQuery` is for and why it is being called for every single request that is made.
    A lot of people seem to base their work on your tutorial, so it essentially spreading a bad practice (and people do not try to understand `fetchBaseQuery` because of it).
    Could you maybe add an annotation at that timestamp that says to pass `headers` into `fetchBaseQuery` instead?

    • @naruclon
      @naruclon Рік тому +1

      Pump

    • @letadz8577
      @letadz8577 Рік тому +2

      Can you create a tutorial for the rtk query?

    • @162filo
      @162filo Рік тому +1

      so we just do it like baseQuery:fetchBaseQuery({ baseUrl ,headers: cryptoApiHeaders}) ? or is it wrong?

    • @ABGwaves
      @ABGwaves Рік тому

      @@162filo Is it work for you ?

    • @162filo
      @162filo Рік тому

      @@ABGwaves no it didnt work

  • @krishnachaitanya8088
    @krishnachaitanya8088 2 роки тому +5

    I have done corona tracker and kept it in my resume, on of the interviewer saw that and liked the work, Thanks sir for helping us, God bless you

  • @jasontanksley2087
    @jasontanksley2087 2 роки тому +98

    As usual, top notch content. Devs in training, we must protect this man and his content at all costs!!!🙌🏾

  • @moyst_archives
    @moyst_archives Рік тому +38

    Tip for the new guys,
    In react-router-dom v6, "Switch" is replaced by routes "Routes". You need to update the import from
    import { Switch, Route } from "react-router-dom";
    to
    import { Routes ,Route } from 'react-router-dom';
    You also need to update the Route declaration from
    to
    -from stackoverflow

    • @subhammishra3419
      @subhammishra3419 Рік тому +3

      Wasted 4 hrs later on i got to know this

    • @ozgunefe3763
      @ozgunefe3763 Рік тому +1

      Thanks!

    • @vaibhavsinhbihola1
      @vaibhavsinhbihola1 Рік тому +1

      Thanks for your efforts 👍

    • @Matty100
      @Matty100 Рік тому +1

      Thanks man! I wish I would've checked out the comments before trying to tackle this one it would've been faster. Good looking out!

    • @abhishekshukla9812
      @abhishekshukla9812 Рік тому +1

      can you tell me how are using the exhange endpoint. It's not free now

  • @ayushdedhia25
    @ayushdedhia25 2 роки тому +17

    This was almost an advanced tutorials covering the topics like React, ReduxToolkit, ChartJs, AntDesign and much more 🔥❤️❤️

  • @mattoattacko
    @mattoattacko 2 роки тому +11

    Stoked to see you using Ant in a project! Thank you for always leaving in the errors and showing us how to fix them. I've learned so much from you doing that.

  • @anirudhagandhare6294
    @anirudhagandhare6294 2 роки тому +7

    Covering these technologies in one video is not a easy task. Hat's off to you man. Thank you!

  • @ThiagoVieira91
    @ThiagoVieira91 2 роки тому +4

    What a discovery your channel is! Got very handy tips and tricks waiting for a medical appointment.
    As someone who works maintaining a legacy React project, loved how you explained which parts of useEffect correspond to which lifecycle method on class based components.
    Really liked your approach to Toolkit, never seen a tutorial address the fetching methods. And a nice introduction to a friendly API.
    Everything explained in a very didactic manner, with good

    • @javascriptmastery
      @javascriptmastery  2 роки тому +1

      Thank you so much Thiago, means a lot!

    • @ThiagoVieira91
      @ThiagoVieira91 2 роки тому +1

      @@javascriptmastery You deserve man! \o/
      Also: Everything explained in a very didactic manner, with good examples*

  • @CodingFire
    @CodingFire 2 роки тому +24

    I dont have any words. I cant say anything
    You content is so FLIPING awesome you almost made me a super react developer lol 🤣

  • @swastiksupakar6071
    @swastiksupakar6071 2 роки тому +4

    If I ever get a job as a React Developer, it will be only because of people like you... Thank You so so much bro... Keep it up

  • @lovelylatin8357
    @lovelylatin8357 2 роки тому +27

    this is actually $1000 worth project, even more

  • @andrewosborne7955
    @andrewosborne7955 2 роки тому +12

    This is absolutely amazing, I can't stress enough how much good you are doing for the dev community!

  • @iqbal5942
    @iqbal5942 2 роки тому +7

    Master is back with master project 🔥no doubt best video on UA-cam

  • @greymatterevolution9723
    @greymatterevolution9723 2 роки тому +6

    Already love it in the first 2 mins. Cannot thank you enough for these hands on projects!

  • @awai_rai
    @awai_rai 2 роки тому +6

    Just the app tutorial I was searching for😄, thank you so much man!!

  • @Wardret
    @Wardret 2 роки тому +2

    I just like the way you make tutorials. You are not afraid of making 2 hour video, where you create a meaningful project, that shows quite a lot of useful features. Keep up the GJ!

  • @northalduin6369
    @northalduin6369 2 роки тому +1

    I've been following your videos since the beginning of 2021, and now my level on JavaScript has improves, and I am really proud of myself thanks to you !
    I wish one day I come to London and give you a hug

    • @javascriptmastery
      @javascriptmastery  2 роки тому

      I'm so glad to hear that you're improving, great job! 😊

  • @hamzahmd_
    @hamzahmd_ 2 роки тому +17

    Highly impressed! You always come up with some unique ideas. You're one of those people who are inspiring young developers.

    • @javascriptmastery
      @javascriptmastery  2 роки тому +1

      I'm so glad to hear that Hamza!

    • @PIYUSH-lz1zq
      @PIYUSH-lz1zq 2 роки тому

      here what is simplified ? how it is working ??

    • @PIYUSH-lz1zq
      @PIYUSH-lz1zq 2 роки тому +1

      bro , since the endpoints are paid ... can you tell me any alternative to fill exchanges component

  • @kingrichard6163
    @kingrichard6163 2 роки тому +6

    This is GREAT stuff. Thank you for putting superior quality behind this course and for making it available to us!

  • @mustakimmahmud1960
    @mustakimmahmud1960 2 роки тому +2

    Sir, thank you so much for your free content. I am unable to buy any course cause my financial condition is not good. I learnt javascript and react from you. I hope one day i will be a great developer like you.

  • @aliedfurdich
    @aliedfurdich 2 роки тому +7

    Awesome. Looking forward to tackling this after my current project 🙌🏻

  • @nirmalshah9947
    @nirmalshah9947 2 роки тому +2

    The quality of these videos is through the roof. Keep progressing, god speed!

  • @oscaralvarez1519
    @oscaralvarez1519 2 роки тому +2

    This Channel is pure gold itself, a lot of quality content about JS React & javascript frameworks.
    Thanks so much for this!

  • @nikhilchavan9854
    @nikhilchavan9854 2 роки тому +3

    OMG.. I was looking a project on Crypto, finally got it. Thanks Man appreciate the efforts.
    Please continue to do more exciting projects.

  • @uchesamuelottah559
    @uchesamuelottah559 2 роки тому +6

    Bro! You're a literal God-sent!!!!
    I can't thank you enough for what you do. Please continue the good work 🙌🙌🙌

  • @SarveshChauhan
    @SarveshChauhan 2 роки тому +2

    Osam man very much appreciated your videos are best on the youtube with latest tools and technologies

    • @javascriptmastery
      @javascriptmastery  2 роки тому +1

      Thank you so much!

    • @SarveshChauhan
      @SarveshChauhan 2 роки тому

      @@javascriptmastery thanks to you man for those long high quality content

  • @frischsticks
    @frischsticks Рік тому

    I've been subbed a while, just wanted to boost the algorithm and say thanks!! Your videos are ALWAYS helpful and never a waste of time, which is what I love most. Consistently amazing content!

  • @vinaymama
    @vinaymama 2 роки тому +2

    Superb and clean explanation.. Thank you
    Learned a lot of things
    1. Redux Usage
    2. ANT Design is super awesome and simple
    3. Really fast way of implementing things

    • @javascriptmastery
      @javascriptmastery  2 роки тому +1

      I'm glad to hear you've learned so many things! 😊

    • @arunabhkumar7811
      @arunabhkumar7811 2 роки тому +1

      Hey have you completed the project ......did you face any errors and are there any sub topics like redux that I should learn first before starting this project??

    • @PIYUSH-lz1zq
      @PIYUSH-lz1zq 2 роки тому

      here what is simplified ? how it is working ??

  • @vedantingole8711
    @vedantingole8711 2 роки тому +5

    Thankyou very much for providing such content for free!! Speechless

  • @scorpion32
    @scorpion32 2 роки тому +2

    This would be a 10 hr course somewhere else, I am really impressed man.

  • @seungyi3534
    @seungyi3534 2 роки тому +2

    Wow great stuff man, didn't realize redux came out with this new toolkit. I always loved the simplicity of using hooks with graphql. This just made my day!

  • @shoaibshaikh9505
    @shoaibshaikh9505 2 роки тому +3

    I just started learning react and i dont think anyone on this planet would be able to teach me like you do 🤣

  • @johndoggett4657
    @johndoggett4657 2 роки тому +2

    I will use your tutorial after I complete my react bootcamp. Thank you for all your tutorials.

  • @anthonypayton1507
    @anthonypayton1507 2 роки тому +16

    I love this project even though I feel like it takes me 4x as long to code at the pace he does, and still make errors. Nonetheless, I love the projects you build and put on UA-cam. I can't wait to return my invest through your subscription.

    • @christophervradis7285
      @christophervradis7285 2 роки тому +5

      Well that's the purpose of coding along. You won't be coding on the same speed with the teacher/mentor - and you will do mistakes. Maybe some times you will spend hours on configuring something of your own preference. But that's alright because that's the purpose of those videos, to make you have a hands-on experience with frameworks/programming languages etc. So even if it takes you 4x times to follow along, thats totally fine and normal. Gz on the experience you got throughout this video, seems so nice! :)

    • @javascriptmastery
      @javascriptmastery  2 роки тому +2

      Exactly!

    • @0x0abb
      @0x0abb 2 роки тому

      @@christophervradis7285 hey there, I am doing this tutorial right now...and yes it's taking me almost a week but I keep having trouble with the "simplified" operator. It's not responding when I need to toggle between 10 or 100 cyptos. The news is worse...I don't receive any objects, just errors like "too many requests" and "cryptoNews undefined" and I started to pay for the service. I am curious if you had any of these problems?

    • @christophervradis7285
      @christophervradis7285 2 роки тому +1

      @@0x0abb hello there. I have not code along this tutorial of @javascript mastery. I just enjoyo watching his videos :)
      For the toomany requets is probably because of error 429. use Retry-after header.
      For undefined you are probably accessing a it before initializing it?

    • @joseph2073
      @joseph2073 2 роки тому +1

      @@0x0abb in 1:33:50, i am getting coinId as undefined..
      how did u solve this problem mate?

  • @semiraf
    @semiraf 2 роки тому +7

    Amazing content as usual! I love that your actually putting your content out there for free, it really helps! I would love to see videos about mobile apps! Also, have you tried making games with Python or Unity and C#? I think you would excel at that in no time!

    • @javascriptmastery
      @javascriptmastery  2 роки тому +2

      Thank you! I haven't yet, no. Might give it a try in the future :)

  • @AAfzal5
    @AAfzal5 2 роки тому +5

    This is amazing, We really need these kind of tutorials where we can see what we can do with these technologies, Thank you for your amazing content, You have earned a new Subscriber. ❤👏

    • @javascriptmastery
      @javascriptmastery  2 роки тому +1

      Woah, I'm so glad to hear that Austin, welcome to the team! :)

  • @porlearktuy4711
    @porlearktuy4711 2 роки тому +1

    I just finished a super basic Cryptocurrency app the other day and then I'm hit with this. Talk about timing.

  • @shambashibmajumdar1268
    @shambashibmajumdar1268 2 роки тому +2

    Really helped ! Your explanation is just on another level! Love from India!

  • @unizfrhn2803
    @unizfrhn2803 2 роки тому +3

    My man!!! Always coming up with excellent projects and content.

  • @thelove98
    @thelove98 Рік тому +4

    Router Not Working in the newer versions. lots of antd problems.
    CSS codes do not work for ant design.
    Anyone with the new code ?

  • @raymondmichael4987
    @raymondmichael4987 2 роки тому +1

    Hopefully I can wrap my head around this wonderful course
    Greetings from Tanzania 🇹🇿

  • @hp___n_
    @hp___n_ 2 роки тому +2

    Thank you. I've never watched your content before. But this one is undoubtedly the great content.

  • @pierobassa2913
    @pierobassa2913 2 роки тому +12

    Hey man can you do an update for the API coinranking. It's not working anymore on rapidapi. They are migrating to their own domain

    • @mihirjadhav5642
      @mihirjadhav5642 Рік тому

      So does the project not work anymore or wht?!?

  • @tomascontreras7760
    @tomascontreras7760 2 роки тому +3

    What a beautiful and amazing project man!! Thanks a lot, I started to learn JS months ago, I've just finished a bootcamp and thanks to you I learned a lot of stuff that I can add to my kit. Very clean, very well explained. Liked, subscribed etc :))
    Can wait to watch your other videos!!

    • @tomascontreras7760
      @tomascontreras7760 2 роки тому

      @@venkateshkumar6142 it does work! However, the /exchanges endpoint is only available in the paid subscription, and also you will have to do some tweaks in the CryptoDetails component in order to show the info ;)

    • @tomascontreras7760
      @tomascontreras7760 2 роки тому

      @@venkateshkumar6142 it does work! However, the /exchanges endpoint is only available in the paid subscription, and also you will have to do some tweaks in the CryptoDetails component in order to show the info ;)

    • @manofshad97
      @manofshad97 2 роки тому

      @@tomascontreras7760 What tweaks do you have to do in the CryptoDetails compoenent to get it to appear?

    • @tomascontreras7760
      @tomascontreras7760 2 роки тому +1

      @@manofshad97 just change the name of the properties of the output. Console.log the response to see how the details are shown

    • @manofshad97
      @manofshad97 2 роки тому

      Hey did you get the chart to change on different time periods. Mine only loads the initial time period and the charts don't change upon changing the time period

  • @vitorlfaria
    @vitorlfaria Рік тому +4

    I loved this project ideia!!! But in 44:40 you dont need to create that createRquest helper, just set the headers via prepareHeaders like this:
    baseQuery: fetchBaseQuery({
    baseUrl: process.env.REACT_APP_CRYPTO_URL,
    prepareHeaders: (headers) => {
    headers.set('X-RapidAPI-Key', process.env.REACT_APP_CRYPTO_KEY)
    headers.set('X-RapidAPI-Host', process.env.REACT_APP_CRYPTO_HOST,)
    return headers
    }
    }),🙌🙌

  • @assefatedla6681
    @assefatedla6681 2 роки тому +2

    Teaching is an art and you are a great artist

  • @0xccd
    @0xccd 2 роки тому

    The best channel. Period. I haven't found any other channel with such content. Thanks man!!

  • @alik64
    @alik64 2 роки тому +7

    May be it will help somebody
    If you have a problem to show chart at 2:00:33 and have this error : » Error: "category" is not a registered scale »
    just add on the top this : `import Chart from 'chart.js/auto’`

  • @ShubhamKumar-gy7oi
    @ShubhamKumar-gy7oi Рік тому +4

    In cryptodetails page line chart is not working properly and time period is not working and date is same in the chart. time in video 1:50:00
    Any one please help me...

  • @ashisbhowmik348
    @ashisbhowmik348 2 роки тому +3

    Please continue with this type of project 👌👌👌👌

  • @tanyabansal5951
    @tanyabansal5951 2 роки тому

    This is the third video I'm viewing on your channel. Your tutorials are really amazing! Thank you for doing what you do :)

    • @ujjwalthakur3024
      @ujjwalthakur3024 2 роки тому

      i can bet you have not coded this as api is not working without a subscription

    • @tanyabansal5951
      @tanyabansal5951 2 роки тому

      @@ujjwalthakur3024 i did it in december when it was working lol

  • @xcg1234
    @xcg1234 2 роки тому +1

    Whatever this channel uploads are all A+ contents. Thank you.

  • @cleancodez
    @cleancodez 2 роки тому +3

    i just finish this now, i mean this is great... please have a separate video only on redux toolkit

    • @javascriptmastery
      @javascriptmastery  2 роки тому

      Great idea!

    • @cleancodez
      @cleancodez 2 роки тому

      @@javascriptmastery waiting... or we collaborate but we have it on your channel, what do you say,

  • @armaghan1196
    @armaghan1196 2 роки тому +13

    Job Interviewers: We are going to make life hell for you, there's no way you can show me interesting projects
    JavaScript Mastery: LET ME INTRODUCE MYSELF

  • @asjadahmedkhan9661
    @asjadahmedkhan9661 2 роки тому +1

    Lots of love to this channel. Can't wait to see you create another awesome stuff in the upcoming video.

  • @shuaibuusman8784
    @shuaibuusman8784 2 роки тому +2

    I am legit crying right now... What a project man... Thanks a million times

  • @parthtrehan3715
    @parthtrehan3715 2 роки тому +9

    Hi I started this project recently and am facing issue in the coinranking api for fetching the coins, seems like they are migrating to V2. If anyone also sees this error let me know if you get any resolution. Thanks in advance.

    • @aniketjha1270
      @aniketjha1270 2 роки тому +1

      Any solution yet??

    • @MohamedGamal-hr2si
      @MohamedGamal-hr2si 2 роки тому +1

      @@aniketjha1270 you should subscribe to plan to get results

    • @aniketjha1270
      @aniketjha1270 2 роки тому +2

      @@MohamedGamal-hr2si I did. Changed the headers. Doesn't work. If u could tell me what all u changed, thatll be great.

  • @programmingwithjavascript3579
    @programmingwithjavascript3579 2 роки тому +3

    Thank you Adrian ! Your teaching method is fabulous 💖

  • @VesselinTsvetkov0724
    @VesselinTsvetkov0724 2 роки тому

    This video was like one of the few good ones I came across on UA-cam. You did a great job explaining everything in such a good way that even a person with no programming background could understand. Keep up the great work! Definitely subscribed.
    I was browsing through your channel and couldn't see a video on what Plugins you're using for VS Code or a video showing how you can install node or react to be able to run 'npm' and 'npx' commands. I would love to see such a tutorial from you as well. Thank you and sorry for the long comment.

  • @theophilusboakye2161
    @theophilusboakye2161 2 роки тому +2

    please when i click on a crypto and get to the cryptoDetails, there is an error from the stats/generic statistics arrays that says cannot read property from undefinced(reading "price")...I think the problem here is the arrays look for the cryptoDetails variable before the API is loaded...hOw can i solve that

    • @ore_wa_king
      @ore_wa_king 2 роки тому

      hey, were you able to solve it ??

  • @tolegen-5420
    @tolegen-5420 2 роки тому +3

    You are amazing! ty for videos

  • @magicnightcn
    @magicnightcn 2 роки тому +7

    In react-router-dom v6, Switch is replaced by Routes. So for this video, install react-router-dom 5.2.0 instead.

    • @henryhayes8390
      @henryhayes8390 2 роки тому

      yeah...this kept me busy for a while...

    • @silkiercomet
      @silkiercomet 2 роки тому +2

      the api endpoitns are also deprecated, this tutorial its heavily outdated, i dont recomment to follow it

  • @detroiter4eva
    @detroiter4eva 2 роки тому +1

    2 hours? Are you kidding? I will be lucky to finish this in 2 days! LOL
    THANKS FOR GIVING US THIS!
    My bad. I got it to work within 30 minutes. Everything is working but the News tab. Other than that. This baby is great. eslint told me to change Switch to Route. Walla!
    Peace and THANK YOU!

  • @simonbabatunde4333
    @simonbabatunde4333 2 роки тому +1

    I haven't started but I love it already from the intro... This is worth a lot

  • @Olatee
    @Olatee 2 роки тому +4

    You're a blessing to us. Thank you!!!!

  • @siddharthbehra5250
    @siddharthbehra5250 2 роки тому +3

    Awesome work sir, your courses are one the reasons I have a good job in react

    • @javascriptmastery
      @javascriptmastery  2 роки тому

      Thanks!

    • @PIYUSH-lz1zq
      @PIYUSH-lz1zq 2 роки тому

      here what is simplified ? how it is working ??

    • @shashankrao6952
      @shashankrao6952 2 роки тому

      @@PIYUSH-lz1zq did it worked for you bro....i am getting a lot of errors kindly help me

  • @siddharthvaidya3555
    @siddharthvaidya3555 2 роки тому +2

    Build this full project, took me about a week but learned a lot of new things.
    Thank you so much SIR !!!

  • @vibhavsalelkar874
    @vibhavsalelkar874 2 роки тому +2

    Amazing👍 Thank you for creating amazing and value packed tutorials. Seriously I have been following you for a year now. Learnt a lot from you. Thanks ❤

  • @donatusbrainokwe4350
    @donatusbrainokwe4350 2 роки тому +3

    This is really amazing. It's so kind of you to release this for free.

  • @danaharley3565
    @danaharley3565 2 роки тому +4

    You really built something amazing

  • @stayupdated7636
    @stayupdated7636 2 роки тому

    The best learning platform have ever seen on UA-cam. Keep up the good work sir.

  • @dexcoder1207
    @dexcoder1207 2 роки тому +1

    you are my favourite instructor on the internet love your projects. how well you explain the things I will do this project using material-ui. Thank you sir

  • @shanshiva4401
    @shanshiva4401 2 роки тому +3

    You're Awesome! Commenting for more reach.

  • @ndifrekejacob6725
    @ndifrekejacob6725 2 роки тому +3

    Your tutorial is topnotch from what i'm seeing so far. As a beginner I must say that I'm able to follow every steps with great enthusiasm. However, I do need help in CryptoDetails section as It's showing "undefined" when I click, instead of showing detail of a particular coin. Kindly help out.

    • @bonyy07
      @bonyy07 Рік тому

      getting the same issue

  • @rvndnishad
    @rvndnishad 2 роки тому +2

    Thanks for the free video... liked ...commented and subscribed :)

  • @prasadbaraskarvlogs
    @prasadbaraskarvlogs 2 роки тому +2

    My favourite Teacher ❤️. God Bless You Sir😇

  • @mamathah4508
    @mamathah4508 2 роки тому +4

    Unable to access coindId showing undefined

  • @ayushthakur733
    @ayushthakur733 2 роки тому +3

    Ohhh man how you know what I was hoping for ...you came up with exactly that thing. You are 🎅

  • @omarlakteb2573
    @omarlakteb2573 2 роки тому +2

    you are really a JS GOAT

  • @guhandelta
    @guhandelta 2 роки тому +1

    Love the way you teach ReactJS, and am interested to see more videos/courses on React Fiber, SSR and SSG architectures. Please do make some interview specific videos on JS ES 12 and CSS.

  • @manasasamaga
    @manasasamaga 2 роки тому +5

    TypeError: Cannot read properties of undefined (reading 'price')
    CryptoDetails

  • @baileyparker44
    @baileyparker44 Рік тому +3

    Hey man, trying to follow along with this now but I cannot get anything to show up on my pages when clicking on the different routes. I have compared code and cannot figure it out. Would it have anything to do with things being deprecated since this video? Example I had to import styles from antd with - import "antd/dist/reset.css"; - Switch was also changed for Routes as per the new guidelines.

    • @arytiwari3789
      @arytiwari3789 Рік тому

      hey, I am facing the same problems. Could you share your fixes please :)

    • @smitshukla6077
      @smitshukla6077 Рік тому

      @@arytiwari3789 I'm facing the same issue, did you solve it?

  • @arzljameslao2781
    @arzljameslao2781 2 роки тому +2

    I can't believe this tutorial is free. As always, thank you for the quality content man!

  • @monisankarnath
    @monisankarnath 2 роки тому +2

    Awesome brother. Again you bring something completely different for us.
    Thanks again ❤️

  • @thesouthsidedev1812
    @thesouthsidedev1812 2 роки тому +7

    Thank you for this course, I loved every second of it and learned a ton about the redux tool kit and I plan to make something out of it by God's grace.

    • @PIYUSH-lz1zq
      @PIYUSH-lz1zq 2 роки тому

      bro , since the endpoints are paid ... can you tell me any alternative to fill exchanges component

  • @codeuron5131
    @codeuron5131 2 роки тому +5

    "Failed to load resource: the server responded with a status of 404 (Not Found)", this is what I'm getting instead of an object as a response from the Rapid API, seems like generated API key is invalid but how's that possible, what's the fix for this?

    • @alexmuia
      @alexmuia 2 роки тому

      Subscribe to the API then get the key

    • @furygaming5321
      @furygaming5321 2 роки тому

      same problem bro need fix

  • @cristobalalvarez3707
    @cristobalalvarez3707 2 роки тому

    Great work, I already have a few others videos from your channel to keep learning. Thanks a lot!!! 🇨🇱

  • @pascalkabika4229
    @pascalkabika4229 2 роки тому +1

    This means a lot to aspiring developers, and me for instance. I really appreciate the way you teach.

    • @PIYUSH-lz1zq
      @PIYUSH-lz1zq 2 роки тому

      here what is simplified ? how it is working ??

  • @idemchenko-js
    @idemchenko-js 2 роки тому +14

    Amazing content! I can't imagine the amount of effort you put into making these videos! I wish you a great success in your endeavours!

  • @tuku_mann
    @tuku_mann 2 роки тому +4

    Woooooow! You're Awesome (from Tuku Mann)

  • @asilbektursunov6821
    @asilbektursunov6821 4 місяці тому

    Best course about redux I have ever seen. Thanks bro to spend your free time for new developers

  • @rmagdiel
    @rmagdiel 2 роки тому +1

    To solve problem with timestamps (1/20/1970) just multiply timestamp x 1000
    Nice vid I really enjoyed doing this

  • @igwekennedy3033
    @igwekennedy3033 2 роки тому +5

    nice work
    but I tried building the app but am having issues with the crytodetails and exchanges after I make a request to the API it returns a blank page even when i copied the exact code i still get the same blank page

  • @amberkhan7875
    @amberkhan7875 2 роки тому +5

    Hey, do you have any course on 'React hooks with redux', I want to buy.
    Thanks for this video. ♥️

    • @javascriptmastery
      @javascriptmastery  2 роки тому +2

      This video briefly goes over that. But I'm working on more in-depth courses, I'll keep you updated :)

    • @amberkhan7875
      @amberkhan7875 2 роки тому

      @@javascriptmastery thank you for your words and lots of love ♥️

  • @AkashKumar-ym4gu
    @AkashKumar-ym4gu 2 роки тому +1

    You are a gem to this world..🙌🙌
    And a hero of all developers❤️❤️
    Love From India🇮🇳

  • @yomisegun43
    @yomisegun43 2 роки тому +2

    Pls I need help. The RapidApi is not working in my project, how do i go about it?

  • @swastiksupakar6071
    @swastiksupakar6071 2 роки тому +4

    I just opened my deployed app again and it was showing nothing. Then I opened the coin ranking api page and tested the endpoints. It showed 503 planned brown-out. It also said to migrate to v2 of the api as the v1 will be deprecated. So I have a request if you would show us how to migrate to this other api otherwise this application will not work and will loose its beauty😊

    • @im_AyanKhan
      @im_AyanKhan 2 роки тому

      Same issue +1

    • @Kpizzle1289
      @Kpizzle1289 2 роки тому

      This is where you need to go read the docs and try and figure it yourself. It's hard to start to do, trust me. But that's what real job will be like. You'll have to read other peoples code and update it.

  • @ayushbhardwaj9728
    @ayushbhardwaj9728 2 роки тому +3

    jsm being the best as always!!