i just finally finished this project, it took me for 2 weeks if i'm not wrong, but i finally have completed this project and deployed it. You can even see my recent comment under this video. Thank you so much, you're my first fullstack teacher, that's first time i've ever finished fullstack app on mern. I have subscriber to you, liked this video and gave a star to your repository, you deserve it
My account was banned on render for deploying this project, then I emailed them and got the ban removed, turns out you shouldn't deploy clone projects which look exactly the same as the real ones, as it may contain trademarked and copyright protected content which will get you banned. Change the color schema and UI and don't use the same logo at all.
Just have finished and deployed the app! I want to thank you so much, this is my first full-stack project and your tutorial and explanations have been great! I'm definitely gonna get a job after more practicing with MERN stack technologies. Good luck!
You are doing a great job my friend... Just share more about your previous videos while giving shoutout to subscribe so that viewers know you have already made a lot of interesting projects
Thanks for the great tutorial! I noticed something that could be optimized in the updateUser function (and such). Since you already fetch the user in the protectRoute middleware and attach it to the req object, you don't need to fetch the user again in the updateUser function. This change avoids redundant database queries and makes the code more efficient. Thanks again for the awesome content!
Just wanted to say thanks for your awesome video tutorial on building a Twitter clone with MERN stack! I found it really clear and easy to follow. I was wondering if you'd consider creating a second video in the future. While the Twitter clone is great, it would be incredible to see how to add features like live chat and voice/video calling. I'm sure a lot of viewers, myself included, would be interested in learning how to implement these functionalities.
At 4:16:20, when we fetch posts depending on the feed type, we could use queryKey dependencies instead of useEffect, it works similarly. ``` const endpoint = getPostsEndpoint(feedType); const { data: posts, isLoading, error, } = useQuery({ queryKey: ["posts", feedType], queryFn: () => postsAPI.getPosts(endpoint), }); ```
i used usedEffect but i dont know why for email it doesnt work , when i give email as blank string in useeffect then only new update occurs otherwise it shows error email already exists
Please keep it up! Your work is amazing! You will definitely hit 100K! Please we're really waiting for eCommerce project! I'm sure It will be amazing! Thank you! ❤
@@saketnigam1733yes. Just do it instead of researching on which tutorial to watch. Just coding this or anything will make you learn rather than finding the perfect tutorial.
MERN hero , MY hero , thank you very , very much I just completed my first MERN stack successfully , MY God May bless you , I feel very happy thanks to you. from Ethiopia Africa
it is a request to also explain the frontend part from the next tutorial because it would give us an approach as to how to think and apply the styles and components
Awesome content as always I am close to finishing this tutorial and yess about the UI design and writing css manually, my views a lot of times I struggle in responsiveness and the best approach to take while making the UI so if you can make a separate video on best design principles, strategies to follow would be the best. Thank you❤❤ lots of love 🎉
Maybe explaining the UI codes in a separate video could be useful for anyone who wants to learn UI programming. But I'm not sure if many people want to learn UI programming so it might not get a lot of views.
yeah and main reason is when we put any proejct in resume we should know 100% about it whether its backend or frontend but using daisy ui we just copy pasted the code which leads to more confusion not even knowing what was actual use of that code
Awesome tutorial as always. Learnt a lot from this. Just a few suggestions. It would be really helpful if you could add reply feature to add replies to comments and search functionality to search for any post based on text.
Brother you should't waste 2+ hours to write css this approach is best hope next time you again follow this approach Btw great tutorial i have learned a lots of things thankyou so much brother keep growing 👍👍
the most popular and loved content of your channel is that chat application in mern......with that video I find your channel....please make a full chat application with mern with free video calling feature and many other features
Lamadev den sonra yahu acaba diyip baktigimda gurur duydugum nadir anlardan, cok iyi ingilizce anlasilir akici , butun videolarini takipteyim , basarilar
@sudipsarkar1512 yes. Just do it instead of researching on which tutorial to watch. Just coding this or anything will make you learn rather than finding the perfect tutorial.
Its nice, but it would be nice when we wait and code all the codes as far as this is for educational purposes , there are some chunks which needs more expalantion for clarity purposes... THanks for the amazing content
Thanks for this amazing tutorial it really helped a lot. Regarding that copy paste thing for large applications like this it is good but it didn’t really helped learning everything about the application. So would suggest you to do some small applications and explain everything, not a suggest please consider this as request. Thank you so much 🙏
Aslan kardeşim eline sağlık , css yazmamak çok iyi fikir hatta artık öğrendik seni copy paste bile bize bırak ama özellikle şöyle 1 dersini sadece tailwind daisy ui ayırabilirsin . Biraz da tasarım yeteneklerini izlemek isterim .
I'm following this guide and I got my 1st unsolvable error at 49:27, when using urlencoding in postman I get get an empty array in the req.body variable, in auth.controller.js, it only works if I use raw json in postman. Yes, I did add app.use(express.urlencoded({ extended: true })); in server.js file. I guess I will just keep trucking along
I found the error. In the authRoutes file I had everything as GET functions (router.get) once I changed signup, login and logout to POST (router.post) then the urlenconding in postman worked as it should.
bro i really loved ur efforts. Can u bring a tutorial of a MERN stack project of a "Coding club" like website? or something where some developer can build community and share notes,discuss about project etc???? if yess then please make a tutorial on this . I really need this type of project
I'm 2 hours into the course. Very straight and nice simple explanation. but you have not explained async handler and error handlers that's why code is getting inconsistent and repetitive. most of us getting """Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client""" this error. Please guide.
Great video! I would like just to put your attention on a bug, when you updating the username, the url doesn't update. I fixed it by passing the formData to the hook and navigate to the url with the new username on success.
I hope you focus more on the ui design next time because I didn't like the way you went through it. it was really quick. just include it and if people aren't interested, they can skip that part.
great tutorial brother! loved it. I also added the notification count next to label and added top loading bar for all requests. But how do i deploy t on vercel? I can't on render as they are asking for credit card... can anyone tell me how to deploy a monorepo on vercel?
explanation of Backend Part is Okay , but the frontend part is just like copy and pasting no explanation . If u want quick project to add in your Resume then this is for you , but if you are here to learn , I think then you should look for some other tutorials.
bro!! I know some basic stuff about react, node, express, and mongo as separate technologies but I have never worked by combining these technologies as a project, I don't know about JWT and RTK, can I take this project or should I do some other stuff and come to this? is this beginner-friendly?
It's beginner friendly and I think you can follow this project. Also, check out the MERN Chat App Tutorial on the channel if you want to build an easier app then come back to this one :)
Yo! That was a ton of work and made me a bit tired but this comment section tells me it was worth it! Thanks for watching ❤
Please can you create an authentication with mail verification
i just finally finished this project, it took me for 2 weeks if i'm not wrong, but i finally have completed this project and deployed it. You can even see my recent comment under this video. Thank you so much, you're my first fullstack teacher, that's first time i've ever finished fullstack app on mern. I have subscriber to you, liked this video and gave a star to your repository, you deserve it
My account was banned on render for deploying this project, then I emailed them and got the ban removed, turns out you shouldn't deploy clone projects which look exactly the same as the real ones, as it may contain trademarked and copyright protected content which will get you banned. Change the color schema and UI and don't use the same logo at all.
this is a prime example of how a tutorial should be made
I finished the Backend Part successfully without finding any problems, thx bro this is really helpful
i am getting error in email. when i send request from postman then its shows invalid email format
Just have finished and deployed the app! I want to thank you so much, this is my first full-stack project and your tutorial and explanations have been great! I'm definitely gonna get a job after more practicing with MERN stack technologies. Good luck!
Bro one doubt message option is there or not
bro u got the greatest youtube channel of all time the videos just keep getting better everytime
brother have u made it completely ,did u come through any roadblocks, if yes then what were those problems,.... please share your views
i dont know who you are, or where you from, but ill find you and give you a medal!
keep up the good work with these tutorials :)
Your way of writing & explaining is lit 🔥
brother have u made it completely ,did u come through any roadblocks, if yes then what were those problems,.... please share your views
Oh now I know what I'm gonna do this weekend. Thank you
brother have u made it completely ,did u come through any roadblocks, if yes then what were those problems,.... please share your views
You are doing a great job my friend... Just share more about your previous videos while giving shoutout to subscribe so that viewers know you have already made a lot of interesting projects
Thank you. Appreciate the support ❤
Bro is there any online class for your coding teaching
Ur explanation is so well it was worth watching
Thank you so much!
Thanks for the great tutorial! I noticed something that could be optimized in the updateUser function (and such). Since you already fetch the user in the protectRoute middleware and attach it to the req object, you don't need to fetch the user again in the updateUser function.
This change avoids redundant database queries and makes the code more efficient. Thanks again for the awesome content!
brother have u made it completely ,did u come through any roadblocks, if yes then what were those problems,.... please share your views
bro you are a gem to the dev community thanks for the greatest tutorial
Wow, awesome . Can't wait for coding this course 🎉🎉🎉
brother have u made it completely ,did u come through any roadblocks, if yes then what were those problems,.... please share your views
Just wanted to say thanks for your awesome video tutorial on building a Twitter clone with MERN stack! I found it really clear and easy to follow.
I was wondering if you'd consider creating a second video in the future. While the Twitter clone is great, it would be incredible to see how to add features like live chat and voice/video calling.
I'm sure a lot of viewers, myself included, would be interested in learning how to implement these functionalities.
brother have u made it completely ,did u come through any roadblocks, if yes then what were those problems,.... please share your views
At 4:16:20, when we fetch posts depending on the feed type, we could use queryKey dependencies instead of useEffect, it works similarly.
```
const endpoint = getPostsEndpoint(feedType);
const {
data: posts,
isLoading,
error,
} = useQuery({
queryKey: ["posts", feedType],
queryFn: () => postsAPI.getPosts(endpoint),
});
```
i used usedEffect but i dont know why for email it doesnt work , when i give email as blank string in useeffect then only new update occurs otherwise it shows error email already exists
Please keep it up! Your work is amazing! You will definitely hit 100K! Please we're really waiting for eCommerce project! I'm sure It will be amazing! Thank you! ❤
brother have u made it completely ,did u come through any roadblocks, if yes then what were those problems,.... please share your views
@@saketnigam1733yes. Just do it instead of researching on which tutorial to watch. Just coding this or anything will make you learn rather than finding the perfect tutorial.
Best youtube channel to learn interesting concepts with you.
MERN hero , MY hero , thank you very , very much I just completed my first MERN stack successfully , MY God May bless you , I feel very happy thanks to you. from Ethiopia Africa
THIS IS THE BEST TUTORIAL THAT I'VE EVER SEEN ! BIG THANKS FROM YOUR NEIGHBOR " IRAQ"
it is a request to also explain the frontend part from the next tutorial because it would give us an approach as to how to think and apply the styles and components
man!!!! explanation and presentation with such ease and code modularityyy!!! damn🔥
As a beginner who doesn't really know anything I must say he is fast
Awesome and straight forward, Thankyou so much bro for this course!!❤
Awesome content as always I am close to finishing this tutorial and yess about the UI design and writing css manually, my views a lot of times I struggle in responsiveness and the best approach to take while making the UI so if you can make a separate video on best design principles, strategies to follow would be the best. Thank you❤❤ lots of love 🎉
efforts you have put in this video is truely remarkable ... hope you cross 50k subs soon ... ♥
Can't wait for that chat functionality when we hit 50k 🎉
Maybe explaining the UI codes in a separate video could be useful for anyone who wants to learn UI programming. But I'm not sure if many people want to learn UI programming so it might not get a lot of views.
yeah and main reason is when we put any proejct in resume we should know 100% about it whether its backend or frontend but using daisy ui we just copy pasted the code which leads to more confusion not even knowing what was actual use of that code
Nah the pre-built designed a definetly a big step up and help, it makes following through the tutorial and completing project much easier.
Really the quality is here ✨🔥
Bro please dont stop posting such good content .love from india
Awesome tutorial as always. Learnt a lot from this. Just a few suggestions. It would be really helpful if you could add reply feature to add replies to comments and search functionality to search for any post based on text.
Burak abim adamsin behh çok iyi anlatıyorsun ve çok güzel yapmışsın eline sağlık
The greatest tutorial of all time.
I love you ❤❤ brother, you're going a long way mark my words
im 2 hours in which means im 2 weeks in and hell yeah brother
Brother you should't waste 2+ hours to write css this approach is best hope next time you again follow this approach
Btw great tutorial i have learned a lots of things thankyou so much brother keep growing 👍👍
the most popular and loved content of your channel is that chat application in mern......with that video I find your channel....please make a full chat application with mern with free video calling feature and many other features
Thank you for your efforts its amazing ❤❤
You're welcome 😊
Thank you So much Sir ♥️...For Providing these amazing projects for free 🚀🚀
Lamadev den sonra yahu acaba diyip baktigimda gurur duydugum nadir anlardan, cok iyi ingilizce anlasilir akici , butun videolarini takipteyim , basarilar
Watching a lamadev project tutorial worth it ?
@@sudipsarkar1512 absoulately worth it
@sudipsarkar1512 yes. Just do it instead of researching on which tutorial to watch. Just coding this or anything will make you learn rather than finding the perfect tutorial.
This is so amazing. You are the best. Thanks for all you do. Much ❤
You are simply the best!
You too
This approach is best!
We should not waste time in writing css classes.
brother have u made it completely ,did u come through any roadblocks, if yes then what were those problems,.... please share your views
Thanks from India , tamilnadu , Madurai
I am from madurai too bro
@@dhivagardhivagar7993 🔥
@@dhivagardhivagar7993 🔥🔥🔥
one Of The Best Video.Ever Had Seen.🙂
You are the best ever dostum. Başarılarının devamını dilerim
Please keep it up, Definitely we will hit 50k ❤🎉
Its nice, but it would be nice when we wait and code all the codes as far as this is for educational purposes , there are some chunks which needs more expalantion for clarity purposes... THanks for the amazing content
Great brother 🔥🔥🔥
thanks for this man 💌
Thank you so much, you saved my lifeeeee
Awesome work bro ❤
Thank you :)
Awesome from India 🇮🇳
thx man, plz create a full news / blog website using node, react,mongo,express
Yeah pro next video
Nodejs + typescript and convert commenjs module 😮
great sir!
3:20:00 i will vote for copy paste
and thank you so much for your efforts
Thanks for this amazing tutorial it really helped a lot.
Regarding that copy paste thing for large applications like this it is good but it didn’t really helped learning everything about the application.
So would suggest you to do some small applications and explain everything, not a suggest please consider this as request.
Thank you so much 🙏
A very interesting project is appreciated, do you by any chance plan to do something using nest and next in the future? all the best
Aslan kardeşim eline sağlık , css yazmamak çok iyi fikir hatta artık öğrendik seni copy paste bile bize bırak ama özellikle şöyle 1 dersini sadece tailwind daisy ui ayırabilirsin . Biraz da tasarım yeteneklerini izlemek isterim .
I'm following this guide and I got my 1st unsolvable error at 49:27, when using urlencoding in postman I get get an empty array in the req.body variable, in auth.controller.js, it only works if I use raw json in postman. Yes, I did add app.use(express.urlencoded({ extended: true })); in server.js file. I guess I will just keep trucking along
I found the error. In the authRoutes file I had everything as GET functions (router.get) once I changed signup, login and logout to POST (router.post) then the urlenconding in postman worked as it should.
bro i really loved ur efforts. Can u bring a tutorial of a MERN stack project of a "Coding club" like website?
or something where some developer can build community and share notes,discuss about project etc????
if yess then please make a tutorial on this . I really need this type of project
this channel will get 100+k subs soon
thanks you so much for a such detailed tutorial 😀
Thank you i will share with my friends. To help you reach your goals thanks its a good tutorial. I will watch it after your chat app thats awesome❤❤❤
Thank you. Glad you liked it :)
It was a great course to learn form. Keep it up!
Thank you
I'm 2 hours into the course. Very straight and nice simple explanation. but you have not explained async handler and error handlers that's why code is getting inconsistent and repetitive. most of us getting """Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client""" this error. Please guide.
Thanks for your hardwork sir❤
Great video! I would like just to put your attention on a bug, when you updating the username, the url doesn't update. I fixed it by passing the formData to the hook and navigate to the url with the new username on success.
man great video! thank your so much🥰
Brother bring more projects,each one teaching different technology
Thank you sir for such a great video please make a video about fullStack ecommerce project and use redux toolkit for state management their
Thanks for your work dear
After the two days I was able to connect postman to my server
Amazing! Thank you so much!
You're welcome!
good job bro :)
❤
Am planning to buy you coffee after getting my credit card 4sure
thank you for your efford and god bles you to keep roccking
@1:49:00 we can add another check if user try to send password with postman request even though we are not saving it in DB any way
thank you!! you saving me
Bruh.. You're the best❤
Titanic work, thank you
it is a good course for projects very awesome😀
great video bro, do you gonna create chat feature for this project?
I hope you focus more on the ui design next time because I didn't like the way you went through it. it was really quick. just include it and if people aren't interested, they can skip that part.
just done with it!
Is it responsive? Share your deployment link
@@shivanshkrishna3571 yeah..
Thanks a lot bro
Every thing is fantastic, except one thing, why you didn't use Typescript instead of JavaScript?
great tutorial brother! loved it. I also added the notification count next to label and added top loading bar for all requests. But how do i deploy t on vercel? I can't on render as they are asking for credit card... can anyone tell me how to deploy a monorepo on vercel?
very useful ❤
could you show your extensions?
2:48:30- tailwind config
Bro in the CreatePost.jsx const res= await fetch("/api/posts/create",{ Getting Error: Internal server error ,while uploading the image
Bro reply me
What theme are you using in your VS Code ?
Can’t wait for chatapp
explanation of Backend Part is Okay , but the frontend part is just like copy and pasting no explanation . If u want quick project to add in your Resume then this is for you , but if you are here to learn , I think then you should look for some other tutorials.
we could have the search functionality as well
Thank you so much for this amazing project! Completed it!
hey have you completed the project??
@@prashantshakya6065 Yes!
bro!! I know some basic stuff about react, node, express, and mongo as separate technologies but I have never worked by combining these technologies as a project, I don't know about JWT and RTK, can I take this project or should I do some other stuff and come to this? is this beginner-friendly?
It's beginner friendly and I think you can follow this project. Also, check out the MERN Chat App Tutorial on the channel if you want to build an easier app then come back to this one :)
@@asaprogrammer_ for chat app, i have no Idea about socket io. You explained about socket io concepts?
day 1: 2:06:05
day 2: 5:00:00