I am new to React. after using react 18 would it be easy to understand the recommended playlist of yours as you have used v16 there I guess or should I go through that playlist first in order to get the concepts thoroughly here ?
I learned React using Vishwas tutorials and still referring to those tutorials. This channel is actually one stop place for frontend development. I love the way he explain the concepts. Thank you for your effort. Much love :)
Your Crash Courses are absolutely amazing. you are explaining everything nicely and give concise examples. I really like you teaching style and please do more arrow function based React projects(membership web-apps, recurring payments, online payments, restricted content to be visible only if a person is a member and paying a monthly subscription etc). Thank you and keep up the good work! Well Done!
I have learned so much, thank you! I did like this: export const Form = () => { const [username, setUsername] = useState(''); //username state variable and with an initial value of empty string const [description, setDescription] = useState(''); const [country, setCountry] = useState(''); const handleSubmit = (event) => { event.preventDefault() //to prevent the page refreshes alert(`Form data is: username= ${username}, description= ${description} and country = ${country}`) console.log('Button clicked', event) } return(
Vishwas, I've learned how to build projects with Angular by watching your tuts, and I've been able to build several projects with those skills, and now, out of curiosity, I am watching this React tutorial just as an overview as I plan to learn the library in the near future. I just like the way you teach complex subjects and make them easy-to-understand for "non-A" students like me. Keep up the outstanding work bro.
You sir, are a GOD. For the first time today, in a year, I felt like ReactJS talked back to me, through your voice. The murky clouds of confusion have cleared up a lot. There is a long way ahead of me, but this crash course has set the pace properly for me. Such a fine channel for learners. Please keep up the good work. Many thanks again!
Goodnight. I am Brazilian. I live in a city of beautiful beaches in the northeast of Brazil called Natal. Thank you for sharing your knowledge with people who, like me, are entering the world of programming. Sorry for the mistakes. I don't master the English language.
Best video for fully understanding react so far. I have learned some, but many others skip important steps or tell you to ignore a bunch of stuff which left me with a lot of questions which were all answered here in this video. Cheers!!
Awesome course! I came here for a refresher on React, and now I learned how to use the useTransition hook which will be very useful in my future projects.
Hi Vishwas, I have learnt React by watching your React Fundamentals as well as React Hooks and Redux videos. It was really nice. I will request you to please launch a series in React Redux Toolkit as well as in React Hook Form and JEST, React Testing Library since those are in real demand in current JOB Market
so glad there is a crash course version I was about to watch your react course that has over 100 videos lol, hopefully all stuff is covered here too! thanks for your amazing course!
One issue some might be facing is at 1:27:50 the empty array on line 13 [], should be an empty object instead {} . I tried changing it back to an array and it works?!? Great tutorial!!! thank you
Dear Vishwas I have been learning from your videos and I kindly request you, please launch a new series on React as it is four years since your last React videos, Now it is v18 and this is the proper time to launch a new series on React, please consider it, fro a new learner like me it is little tricky to differentiate between new changes and do the fine reading between new and old versions and the changes they bring along, I am very happy with your videos, lots of love and respect to you dear
Vishwas Sir ! Need more tutorials from MUI. please go a bit advance in MUI please. and try to bring in REDUX TOOLKIT please that's the MUST. Please facing issues in production toolkit can help a lot as well as bring in React Native tutorials.
This crash course series is great for seasoned developers making their headway into React. Kudos for the effort. By the way love the theme and icon packs. Can someone tell which theme is he using?
Hi Vishwas, Thank you for the tutorials , if it wasn't for your react series I would not have got the concepts of react. There is a little request though, Please make the tutorials for the REACT UNIT TESTING .🙏🏽🙏🏽
Task in the form handling section import { useState } from "react"; export const Form=()=>{ const[country,upDateValue]=useState('India'); function update(event){ upDateValue(event.target.value) } return {event.preventDefault();alert(`Your Country is ${country}`)}}> Select Your Country : India USA France Pakistan Dubai Other
Any newbie (like me) who makes it to the end: the site Vishwas gets his data file from (1:37:41) is mockaroo (RUclips won't allow the full address with .com)
Hello Vishwas! I wanted to ask you if it makes sense to learn the class component of React? I'm a beginner developer. I'm waiting for your answer, thank you very much in advance.
Hi I'm getting this error while compiling the first created component, ERROR in ./src/App.js 4:0-39 Module not found: Error: Cannot find file: 'Greet.js' does not match the corresponding name on disk: '.\src\components\greet.js'.
I've done the filtering the last section but in my opinion it still doesn't work as it should. When I'm typing something the typing is not done on my press but with delay after all the rest data list is loaded. The input field should be free from bottlenecking, just the list shoudl be affected by bottlenecking.
i have learned Python thn Django for backend now after completing JS i am learning React , I need to know where i can find tutorial for building website by using Django and React
For a more complete deep dive into React, watch the full playlist at ruclips.net/video/QFaFIcGhPoM/видео.html&ab_channel=Codevolution
Great thanks 🙏👍
We need redux also
I am new to React. after using react 18 would it be easy to understand the recommended playlist of yours as you have used v16 there I guess or should I go through that playlist first in order to get the concepts thoroughly here ?
@@NiteshKumar-zy7gl.
why we need NodeJS for react or Angular?
I learned React using Vishwas tutorials and still referring to those tutorials. This channel is actually one stop place for frontend development. I love the way he explain the concepts. Thank you for your effort. Much love :)
hv u landed on some job?
you are that Indian guy, whom I can clearly understand in English :D thanks for your work
Your Crash Courses are absolutely amazing. you are explaining everything nicely and give concise examples. I really like you teaching style and please do more arrow function based React projects(membership web-apps, recurring payments, online payments, restricted content to be visible only if a person is a member and paying a monthly subscription etc). Thank you and keep up the good work! Well Done!
I have learned so much, thank you! I did like this:
export const Form = () => {
const [username, setUsername] = useState(''); //username state variable and with an initial value of empty string
const [description, setDescription] = useState('');
const [country, setCountry] = useState('');
const handleSubmit = (event) => {
event.preventDefault() //to prevent the page refreshes
alert(`Form data is:
username= ${username},
description= ${description} and
country = ${country}`)
console.log('Button clicked', event)
}
return(
Username
{
setUsername(event.target.value)
}} />
Description
{
setDescription(event.target.value)
}}
>
{
setCountry(event.target.value)
}}
>
--Please choose an option--
Sweden
Rumania
Venezuela
Submit
)
Vishwas, I've learned how to build projects with Angular by watching your tuts, and I've been able to build several projects with those skills, and now, out of curiosity, I am watching this React tutorial just as an overview as I plan to learn the library in the near future. I just like the way you teach complex subjects and make them easy-to-understand for "non-A" students like me. Keep up the outstanding work bro.
You sir, are a GOD. For the first time today, in a year, I felt like ReactJS talked back to me, through your voice. The murky clouds of confusion have cleared up a lot. There is a long way ahead of me, but this crash course has set the pace properly for me. Such a fine channel for learners. Please keep up the good work. Many thanks again!
This is by far the best ever tutorial on React JS that I have come across. Thank you so much Vishwas, more strength and power to you :-)
Goodnight. I am Brazilian. I live in a city of beautiful beaches in the northeast of Brazil called Natal. Thank you for sharing your knowledge with people who, like me, are entering the world of programming. Sorry for the mistakes. I don't master the English language.
Best video for fully understanding react so far. I have learned some, but many others skip important steps or tell you to ignore a bunch of stuff which left me with a lot of questions which were all answered here in this video. Cheers!!
Awesome course! I came here for a refresher on React, and now I learned how to use the useTransition hook which will be very useful in my future projects.
Hi Vishwas, I have learnt React by watching your React Fundamentals as well as React Hooks and Redux videos. It was really nice. I will request you to please launch a series in React Redux Toolkit as well as in React Hook Form and JEST, React Testing Library since those are in real demand in current JOB Market
I found it difficult to understand some concepts of react but Vishwas tutorials made everything so simple for me to understand...keep it up!!!
This type of knowledge in just 2 hours is really good. Keep it up mate
This was great to get me up to speed on the latest react conventions, coming from very old versions.
This was a great overall tutorial, specially by adding the transition hook at the end 👍
This is the channel foe every react developer out there, I mean his explantion can make a beginner go pro
One of the best React dev channels on youtube.... keep it up!!
This is well presented and explained tutorial for beginners. I will highly recommend this to every one interested learning React. Thanks a lot
By far the BEST react tutorial on the internet.
I earnestly request you to please make an updated video of Angular, as I do genuinely follow your videos which truly helped me to learn.
so glad there is a crash course version I was about to watch your react course that has over 100 videos lol, hopefully all stuff is covered here too! thanks for your amazing course!
Does it cover everything or there will be need to watch the playlist
One issue some might be facing is at 1:27:50 the empty array on line 13 [], should be an empty object instead {} . I tried changing it back to an array and it works?!? Great tutorial!!! thank you
This was a GREAT refresher! Thanks for the awesome work!
Thank you a lot for releasing and giving away all that knowledge for free! Its highly appreciated :) Enjoy to keep creating ^^
Dear Vishwas I have been learning from your videos and I kindly request you, please launch a new series on React as it is four years since your last React videos, Now it is v18 and this is the proper time to launch a new series on React, please consider it, fro a new learner like me it is little tricky to differentiate between new changes and do the fine reading between new and old versions and the changes they bring along, I am very happy with your videos, lots of love and respect to you dear
um isn't this the new react video or were you referring to one which goes over more advanced topics?
I was able to achieve creating the other two form inputs and fetch the data successfully
Vishwas Sir ! Need more tutorials from MUI. please go a bit advance in MUI please. and try to bring in REDUX TOOLKIT please that's the MUST. Please facing issues in production toolkit can help a lot as well as bring in React Native tutorials.
This crash course series is great for seasoned developers making their headway into React. Kudos for the effort. By the way love the theme and icon packs. Can someone tell which theme is he using?
Nord and Material Icon Theme
Hello Sir!
Your Video very clearly explaining step by step.
Thanks a lot!
God Bless You!
Hi Vishwas, Thank you for the tutorials , if it wasn't for your react series I would not have got the concepts of react. There is a little request though, Please make the tutorials for the REACT UNIT TESTING .🙏🏽🙏🏽
Your tutorial are great , easy to learn & quick catchup. Request for react testing library & cypress. Thank you in advance. And your great fan 🧡
cant believe this is free. thank you
Great Course. Best I have seen so far.
I able to achieve your assignment. Thank for you awesome tutorial.
I needed this!! Thank you so much!
Thanks for this video. Its really great for revising.
Please make React crash course series as you did for Javascript. It will be so dope.
Thanks, you make life easier 💐
Please make a advance react crash course . Thanks a lot ❤️
Thanks for taking your time to explain React.
The last update in that video or not?
This channel is gold mine
Task in the form handling section
import { useState } from "react";
export const Form=()=>{
const[country,upDateValue]=useState('India');
function update(event){
upDateValue(event.target.value)
}
return {event.preventDefault();alert(`Your Country is ${country}`)}}>
Select Your Country :
India
USA
France
Pakistan
Dubai
Other
Submit
}
Fantastic work here. Excellent. 🍾🥂🎉
this was excellent. Thank you so much!
Excellently presented. I subscribed and looking forward to more of your material.
Great tutorial
Next time please use a high contrast font colour.
Any newbie (like me) who makes it to the end: the site Vishwas gets his data file from (1:37:41) is mockaroo (RUclips won't allow the full address with .com)
thanks
exactly what I was searching for....thanks
Wonderful tutorial... great presentation... thanks a lot for your clear cut guidance...
this is so much better than whoever wrote the React docs
Very Useful and easy to understand. Thanks for sharing the useful info.
super vishwas ... Keep up your good work
thank u . got precise understanding of the concepts😄😄
after this vid my life is up and running ;D
Vishwa we need react native course
Woah! Eagerly waiting for this.
Thanks for putting this together, it is quite helpful
nice content with broader clarity
Thank you very much I was in need of his Course 😘
Wonderful content brother!! GBY
Hello sir, thank you for all you do… please consider a nestjs course in the future 🙏🏾
So much thanks it was really help full !
Excelente curso, brother! Obrigado!
God bless you!
Great tutorial! Thank you bro
Voice of vishwas is hardcoded in my memory
Thank you, great.
in one word just awesome❤❤❤
Please start building projects in React JS. E.g Portfolio website
You are doing great ♥️♥️♥️👍💯💻
How to make reusable component in angular ? Kindly make video bro.... thanks advance . Videos simply super
really good contents for react! thanks.
Excellent course brother ❤❤❤❤❤❤❤❤
This is amazing bro.. Thanks for sharing your knowledge 🔥🔥
Can we refer this tutorial for beginners..? Or check another playlist of your
great work
Thank you!!!
Is this must watch first before your NextJS tutorial?
Hi Vishwas,
Thank you for the wonderful explaination.
It would be great if you can share the slides. :)
Can you make a similar video on angular as well?
47:29
thanks alot
Great content
Hello Vishwas! I wanted to ask you if it makes sense to learn the class component of React? I'm a beginner developer. I'm waiting for your answer, thank you very much in advance.
nice tutorial 🙂
Awesome bro👌❤️👍
Excellent.
Any plans to update Next JS course with Next 12 features ?
Hello, Vishwas please make the new series on react.
Hi I'm getting this error while compiling the first created component, ERROR in ./src/App.js 4:0-39
Module not found: Error: Cannot find file: 'Greet.js' does not match the corresponding name on disk: '.\src\components\greet.js'.
Possible typo....did you name your file greet.js or Greet.js? Everything is case sensitive
1:03:55
Please add advance stuff in react 18
can you exlain why does react strict mode fires useEffect twise?? How can we write code which happens only if state changes ???
I was curious, on why did you remove the strictMode
Same as the 2018 Tutorial of React Fundamentals?
Hi, please what's the name of the plugin that auto import components in the video?
1:41:54 How is the list of names still there when there is literally nothing in the input field? Can anyone please explain?
why is it that when i try a closing tag it doesnt work. you have to use and instead @ 36:35
is it possible to code jsx files when importing react via the cdn and not as a node module?
I've done the filtering the last section but in my opinion it still doesn't work as it should.
When I'm typing something the typing is not done on my press but with delay after all the rest data list is loaded.
The input field should be free from bottlenecking, just the list shoudl be affected by bottlenecking.
how to deal with peer-deps error for testing libraries, as my create-react-app is not working (
Please make a new react course!
At 7:46, I am getting an error of npx not recognized. Can anyone assist me?
i have learned Python thn Django for backend
now after completing JS i am learning React , I need to know where i can find tutorial for building website by using Django and React