ReactJS Project Music Player App - 01
56:28
Пікірлер
@zaidan5796
@zaidan5796 12 күн бұрын
I'm getting validation error for both my login and registration forms, it validates the first 2 fields for email and name. It also refuses to accept valid gmail address calling it invalid. I've looked over the code for hours and i don't see any difference between what you did and what i did
@attarahman7049
@attarahman7049 24 күн бұрын
Yeh project urdu me available hai?
@CMastery-pv7gj
@CMastery-pv7gj 29 күн бұрын
Sir source code link is not working
@hridoykhan1782
@hridoykhan1782 Ай бұрын
Awesome
@dora_dora134
@dora_dora134 Ай бұрын
unable to open source code for this project. Is the link provided working? Can anyone help me with this?
@sakshamjain3117
@sakshamjain3117 Ай бұрын
can you provide the code because the categories are not added from database and i write exact the same code you wrote
@aniketshrivastava5926
@aniketshrivastava5926 2 ай бұрын
Sir can you provide us the github link of the project
@AgunbiadeAdemola-ic2wc
@AgunbiadeAdemola-ic2wc 2 ай бұрын
can I see the package of this tutorial to download? I stock at AddToCart in this tutorial.
@user-vh8qq5wq8n
@user-vh8qq5wq8n 2 ай бұрын
don't think that I don't know anything. yay! hahaha nice vid bruh
@RizwanKhanDeveloper
@RizwanKhanDeveloper 2 ай бұрын
Thanks 😅
@honourableman
@honourableman 2 ай бұрын
not able to open website
@abelojong6735
@abelojong6735 3 ай бұрын
why I cannot download this source code
@lindatochukwu3081
@lindatochukwu3081 3 ай бұрын
pls how do i get the github link to this project?
@hemanthsarath6117
@hemanthsarath6117 3 ай бұрын
I got output and i register page i fill all detail but its loading
@hemanthsarath6117
@hemanthsarath6117 3 ай бұрын
Tell me sir
@mahmudulalam8138
@mahmudulalam8138 4 ай бұрын
Asslamu alaikum Rizwan vai, facing problem in 14:42 second name validation is not working Plz help
@peachythegreat8945
@peachythegreat8945 4 ай бұрын
Thank you for such an informative video. You are a great teacher. Please keep up the good work !! :"))
@RizwanKhanDeveloper
@RizwanKhanDeveloper 2 ай бұрын
Thanks for motivation. i will keep posting the videos
@kentnuqui20
@kentnuqui20 5 ай бұрын
Thank you sir Rizwan Khan. Anyone still having problem or issue? just comment here your email i'll provide the instruction for you guys! :)
@RizwanKhanDeveloper
@RizwanKhanDeveloper 2 ай бұрын
thanks for your support
@christiandavid7824
@christiandavid7824 6 ай бұрын
Hello Sir. This is a timely help to me. Thank you very much.
@sourabhnandi8410
@sourabhnandi8410 5 ай бұрын
Bro is it working properly
@RizwanKhanDeveloper
@RizwanKhanDeveloper 2 ай бұрын
Glad to hear that
@user-ip4bx8zs3n
@user-ip4bx8zs3n 6 ай бұрын
nice tutorial! 😽
@RizwanKhanDeveloper
@RizwanKhanDeveloper 2 ай бұрын
Glad you liked it!!
@shrilakshmi1740
@shrilakshmi1740 6 ай бұрын
Hi can you have a interview for backend developer at byjus
@jangiramit9865
@jangiramit9865 6 ай бұрын
❤❤
@adityadond
@adityadond 6 ай бұрын
All goood so far. Understanding every bit. That a lot Rizwan
@iyaehsan3840
@iyaehsan3840 7 ай бұрын
I am using Switch for routing as shown in the video but it isnt working, anyone know why?
@AmirhosseinMehrvarz
@AmirhosseinMehrvarz 7 ай бұрын
Nice job
@arumugammugam1864
@arumugammugam1864 7 ай бұрын
Inventory billing app(web) Front-end: Reactjs Back-end: Nodejs Database: MongoDB how to create this project help me bro pls
@arumugammugam1864
@arumugammugam1864 7 ай бұрын
Inventory billing app(web) Front-end: Reactjs Back-end: Nodejs Database: MongoDB how to create this project help me bro pls
@doublebeefstew
@doublebeefstew 7 ай бұрын
DONE 18:25 create category controller 20:30 create admin middleware for creating categories 37:42 create category function on get category
@doublebeefstew
@doublebeefstew 7 ай бұрын
DONE
@doublebeefstew
@doublebeefstew 7 ай бұрын
DONE authorization page 5:18 set PORT = 4000 7:30 react-router-dom 8:14 css font 10:46 importing bootstraps components 14:00 layout components 18:05 app -> layout(children) -> header(navbar) 23:00 container structure & react-router 30:00 react-router NavLink
@doublebeefstew
@doublebeefstew 7 ай бұрын
DONE sign in & admin 8:01 use auth schema method to check pass 9:00 jwt authentication 14:15 virtual schema properties 17:45 authorize routes 20:20 setup token in postman 27:18 make admin route
@doublebeefstew
@doublebeefstew 8 ай бұрын
make folder FE & BE npm init -y on BE npm install express express-validator mongoose dotenv nodemon 4:58 src/index-server.js .env file get & post route test nodemon setup DONE bodyParser package mongoDB setup mongoose ConnectDB routes, controllers, models folder configure route file configure model file 35:22 schema.virtual 39:08 schema.methods complete signup route & controller
@doublebeefstew
@doublebeefstew 8 ай бұрын
completed
@user-im3en4hs2o
@user-im3en4hs2o 8 ай бұрын
param is not working tell me pls
@NormieCyrox
@NormieCyrox 8 ай бұрын
here is the new concised version with hashing the password in logic btw: router.post("/signup" ,async (req,res)=>{ const {email , password , firstname ,lastname , username } = req.body const user = await UserModel.findOne({email : email}) if(user)return res.status(400).json({message : "User already registered"}) if(user.password !== password){ return res.status(300).json({message : "passwords do not match"}) } const newUser ={ firstname : firstname, lastname : lastname, username : username, email : email, password: password } await newUser.save() res.json(200).json({message : "user successfully registered !"}) })
@dreamperpetual
@dreamperpetual 8 ай бұрын
useful video bro thanks
@dreamperpetual
@dreamperpetual 8 ай бұрын
today im going to talk about rrrrrrrouting
@luizmelo662
@luizmelo662 8 ай бұрын
Thank you very much for your teachings. The link provided is broken, would it be possible, please, to provide a link to the correct code?
@amishamallick3547
@amishamallick3547 8 ай бұрын
will this be having seller panel too? I am having a project to create a multi vendor website.. I liked your explanation though
@user-pc2qd9ky1d
@user-pc2qd9ky1d 8 ай бұрын
i want to change paypal to bank-to-bank plz
@charliepips2677
@charliepips2677 8 ай бұрын
great video from start to finish. i used this video to successfully deploy my backend server. i didnt need the build steps because i would not be showing any frontend. 10/10 video!
@anisremila4592
@anisremila4592 9 ай бұрын
KK
@yashakeerthilasya9005
@yashakeerthilasya9005 9 ай бұрын
I am unable to use postman chrome extension it is showing unsupported to present chrome what can i do now
@shxikant
@shxikant 9 ай бұрын
Id & password for admin login page???!!? Please
@PallaviNagarkar
@PallaviNagarkar 9 ай бұрын
Hi I wanted to know whether these rounds are similar for the Senior Frontend Engineer role as well?
@RizwanKhanDeveloper
@RizwanKhanDeveloper 9 ай бұрын
It’s totally upto the interviewer and your luck
@Sunilkumar-413
@Sunilkumar-413 9 ай бұрын
Source code please
@AhmarZaidi
@AhmarZaidi 10 ай бұрын
Really helpful tutorial. Thanks a lot!!
@togaka
@togaka 10 ай бұрын
Bro how to use call back function in that index.server.js file is there any shortcut key for that double small brack after PORT, 5:40 , please do answer i am new at node js and these things.
@user-wt2op3jz3z
@user-wt2op3jz3z 10 ай бұрын
[PrivateRoute] is not a <Route> component. All component children of <Routes> must be a <Route> or <React.Fragment> at invariant (localhost:3000/static/js/bundle.js:2152:11) at localhost:3000/static/js/bundle.js:50661:108 at localhost:3000/static/js/bundle.js:54740:21 at localhost:3000/static/js/bundle.js:54703:21 at mapIntoArray (localhost:3000/static/js/bundle.js:54606:27) at mapIntoArray (localhost:3000/static/js/bundle.js:54651:27) at mapChildren (localhost:3000/static/js/bundle.js:54702:7) at Object.forEachChildren [as forEach] (localhost:3000/static/js/bundle.js:54739:7) at createRoutesFromChildren (localhost:3000/static/js/bundle.js:50649:47) at Routes (localhost:3000/static/js/bundle.js:50508:20)
@kaynatshaikh7258
@kaynatshaikh7258 10 ай бұрын
sir , Is it Real payment module ? pls reply
@RizwanKhanDeveloper
@RizwanKhanDeveloper 10 ай бұрын
Yes, Its Razorpay Integration
@iazadur
@iazadur 10 ай бұрын
Url not working.