Hello Mike , I am fresher candidate aspiring to become Developer. I have learned MERN Stack, SQL , JAVA etc... Could you please tell me which technologies and tools I have to learn to crack a Developer role .
@@krishnaprasanna3032 try to get good at a few rather than be mediocre at many Try and improve a lot in the things you know right now and as time goes on add things to it
Hello sir, am from Bangladesh. As a web development learner, this is my first visit to your channel. And this is first tutorial I have seen on your channel. I just fall in love with your teaching ability and your tutorial. I'm So impressed. All tutorials are so standard and your teaching ability is so so so good...Take love from Bangladesh. Your pronunciation is very clear which is very convenient for non-English people like us.
Wow man this was very easy to follow, thank you so much! I've seen other tuts and it was sooo overwhelming. You kept it focused on the core fundamentals and basics, and that's exactly what I needed!
So easy and straight forward ...other tutorials just throw you off. I've understood socket. Will now try and work on a simple project to test what I've learnt. Thank you, you've earned my sub
This is the best socket and react tutorial I've ever seen. I like how you explained every basic thing (like the hooks and server) because as a beginner I had no idea what they did.
before i start i just hated the socket and said why should i use the socket to message then when found your tutorial i loved the sockets, thanks a lot ❤
Thank you for this Pedro! recently subscribed and watched so much of your videos! Was hoping for some content that goes through real time servers, i.e. a simple online game with multiplayer online features; and how we could implement it online instead of just on localhost! once again thank you for the wonderful content :)
At 21:53, are you sure using 'socket' as dependency to useEffect is the right thing? I am getting warning that having socket as dependency doesn't actually do a thing. The socket variable actually sits outside of the App component so I am not sure how using it as a dependency even make sense.
for me it works because if i don't put socket in the dependancy, when I click the button, frontend won't make any update and show the alert message because the socket recieve_message function in the useEffect is not running until it sees the socket thats in the dependency has been triggered. EDIT: Actually now it works without the socket dep. interesting
thank bro you are cool. This really help. I was mad at world. But now world less bad. All becaise video is good of qauility and now I do project. you are the goodness of the yourtube. and this make me happy day.
Pedro, ótimo vídeo, porém estou com um problema, não estou conseguindo fazer o chat funcionar fora do local host, tenho uma hospedagem para onde mandei o site, alterei onde estava localhost pelo meu domínio, porém não funciona, você sabe como posso fazer com que o chat funcione na minha host, fora do localhost, para pessoas poderem usar o chat em dispositivos diferentes?
Hi Pedro! Nice video. I have one question: It is okay to put onChange handlers to inputs? If i console.log the state, after every keystroke the state is updated. Isn't a better idea to update the state in onClick handlers, so, we shouldn't update the state after every keystroke? I'm not sure, that's why I'm asking you this. ^^ Thank you.
Pedro thank you so much for all the tutorials and efforts going to each and every one of your videos, really appreciate your help, it has helped me tremendously! Quick question: Would you place a chat app and and api on the same express server? or create 2 different express instances with different ports obviously so that we have different express servers for different purposes? I've been a frontend dev for quite many years and start getting into backend quite recently and your videos has helped me quite a lot, so thank you so much!
That's really amazing tutorial for very beginner like me. Thanks a lot. some videos I watched, They first finish server coding first then frontend coding. it was tap for me understand. here he code step by step , Kindly Upload more details video on this socket io plz
Thanks for the tutorial. Just for my own curiosity, how would you print a message to all clients including the person who sent it? As you mentioned, the broadcast method emits an event to all client except for the initial sender
Thank you! This is super helpful. Cleared things up for me that I've been stuck on for weeks. I'm kind of curious what the io information looks like from component to component. Should the client-side socket only be managed in the highest level component (App), or are there other methods?
Eu, another great tutorial, I actually made a social network with the help of your series on nodejs react and mysql.. Do you think it's possible to add this kind of app with all the code I have already.. I was thinking about adding this kind of functionality but it's not easy with an existing front-end and back end already created.. Thanks for your amazing job here.. Greetings from France!
Very nice explanation! But, can you make a tutorial implementing this with Nextjs API routes and using another use case (receiving data from a streaming API for instance) since literally every socket io on internet is about building a chat app.
you can pretty much follow along with this video since there is a more traditional way of starting your express server and initializing the next build.
Hey Pedro! Thanks for the tutorials and guides, you really helped me stepped up my coding skills. I'm wondering if you could do Docker tutorial also as I want to deploy a couple of my projects. Have a great day :)
Got a job as a dev some months ago, but learning process never stops, thanks for this brother !
been at it for quite some time...this is a constant in our field, a constant that keeps me focused and excited!
It will never end
same
Hello Mike , I am fresher candidate aspiring to become Developer. I have learned MERN Stack, SQL , JAVA etc... Could you please tell me which technologies and tools I have to learn to crack a Developer role .
@@krishnaprasanna3032 try to get good at a few rather than be mediocre at many
Try and improve a lot in the things you know right now and as time goes on add things to it
literally the best tutorial on youtube, thanks for making it short and not complecating anything, great job bro
Hello sir, am from Bangladesh. As a web development learner, this is my first visit to your channel. And this is first tutorial I have seen on your channel. I just fall in love with your teaching ability and your tutorial. I'm So impressed. All tutorials are so standard and your teaching ability is so so so good...Take love from Bangladesh. Your pronunciation is very clear which is very convenient for non-English people like us.
Wow man this was very easy to follow, thank you so much! I've seen other tuts and it was sooo overwhelming. You kept it focused on the core fundamentals and basics, and that's exactly what I needed!
100% agree with this comment. Thanks Pedro
So easy and straight forward ...other tutorials just throw you off. I've understood socket. Will now try and work on a simple project to test what I've learnt. Thank you, you've earned my sub
You are an incredible teacher. Hands down best tutorial on this subject that I have found yet! Thank you.
This is the best socket and react tutorial I've ever seen. I like how you explained every basic thing (like the hooks and server) because as a beginner I had no idea what they did.
Thanks again!
Thank you so much for the support
Thank you so much. Just what I needed. Not too overwhelming, very informative and helpful. Great job
The only useful socket tutorial in youtube, big thanks bro wish you all the best !
Bro you've saved my job so many times! ♥️
bro please please make full-stack video using mern stack + AWS S3
before i start i just hated the socket and said why should i use the socket to message then when found your tutorial i loved the sockets, thanks a lot ❤
Cool ! I learned a lot of things from this channel. Thank you Pedro
Hats off! I owed you a lot, this tutorial was the best!!
Wow, ce tutoriel is too good man. Sooo concise and neat. Maintenant je peux développer mon multiplayer game in no time. Merci!
This is one of the important topics should be known by web developers! Thanks for this video!
Awesome bro it is worked for me I have been tucked in this for more than 2 months
best video to understand concept of socket io in half hour
Thank you for this Pedro! recently subscribed and watched so much of your videos! Was hoping for some content that goes through real time servers, i.e. a simple online game with multiplayer online features; and how we could implement it online instead of just on localhost! once again thank you for the wonderful content :)
great video mate, straight to the point & well explained!
wow really good video. I was struggling with this for last 2 days for implementing in a project. Thank you pedro.
thank you very much, this will help me do my hard project at my university, thank youu
You are welcome!
very detailed, I find it very easy to understand and helps me go deeper into it more easily, thank you bro😘
This was exceptionally to the point explanation, really the best @Pedro Tech
Really waiting for it 🙂
:)
At 21:53, are you sure using 'socket' as dependency to useEffect is the right thing? I am getting warning that having socket as dependency doesn't actually do a thing. The socket variable actually sits outside of the App component so I am not sure how using it as a dependency even make sense.
for me it works because if i don't put socket in the dependancy, when I click the button, frontend won't make any update and show the alert message because the socket recieve_message function in the useEffect is not running until it sees the socket thats in the dependency has been triggered.
EDIT: Actually now it works without the socket dep. interesting
You made my life easy my man your so great🤞
Nice and short explanation , Love from India ❤❤❤❤
WOWWW, simply a nice explaination. Thank you
Brilliant tutorial video. Served me well as a refresher course. One of the few videos I enjoyed watching!
Thanks a lot for this tutorial pedro! Very easy to follow along.
Great tutorial, I don't have words to praise your content.
Great, simple, crisp explanation❤
Great Job man that was one of the best tut i ever had.
Keep the great work up
Great video Pedro. Exactly what I was looking for - many thanks
Perfect introduction, thanks a lot man :D
Short but really informative! Thanks a lot
Awesome video! Pedro you have some of the best content on YT! Keep it up!
I wish you posted this sooner, would’ve saved me a lot of time XD
Thanks man , saw this any implemented online playing for my game
This is amazing! Great looking thumbnail btw
Thanks! 😁
Super Cool. Thx another Pedro!🤓
Greetings from Colombia! thanks for the video. One question, why put socket in the useEffect dependencies if its ref is never going to change?
I really enjoyed your tutorial. It was very easy to follow and understand.
Thank you for this video bro, saved me a lot of time reading documentation!
Thanks for taking the time to really break this down
thank bro you are cool. This really help. I was mad at world. But now world less bad. All becaise video is good of qauility and now I do project. you are the goodness of the yourtube. and this make me happy day.
Pedro, ótimo vídeo, porém estou com um problema, não estou conseguindo fazer o chat funcionar fora do local host, tenho uma hospedagem para onde mandei o site, alterei onde estava localhost pelo meu domínio, porém não funciona, você sabe como posso fazer com que o chat funcione na minha host, fora do localhost, para pessoas poderem usar o chat em dispositivos diferentes?
I love you bro LMFAO
Learned so much in 30mins
Hey, cool concept, never heard of SSE. How would you secure the connection and make sure the events you received are from a trusted source?
Hi Pedro!
Nice video.
I have one question:
It is okay to put onChange handlers to inputs? If i console.log the state, after every keystroke the state is updated. Isn't a better idea to update the state in onClick handlers, so, we shouldn't update the state after every keystroke? I'm not sure, that's why I'm asking you this. ^^
Thank you.
This is great. I just wanted to learn this. Thanks a lot.
Pedro thank you so much for all the tutorials and efforts going to each and every one of your videos, really appreciate your help, it has helped me tremendously!
Quick question:
Would you place a chat app and and api on the same express server? or create 2 different express instances with different ports obviously so that we have different express servers for different purposes?
I've been a frontend dev for quite many years and start getting into backend quite recently and your videos has helped me quite a lot, so thank you so much!
That's really amazing tutorial for very beginner like me. Thanks a lot.
some videos I watched, They first finish server coding first then frontend coding. it was tap for me understand.
here he code step by step ,
Kindly Upload more details video on this socket io plz
I have never used sockets but its look great, thanks for video
best tutorial about socket io, thank u sir 👍👍
Thanks for the tutorial. Just for my own curiosity, how would you print a message to all clients including the person who sent it? As you mentioned, the broadcast method emits an event to all client except for the initial sender
Hey thanks, your sokcet video is best over the internet
Bro. you are a lifesaver. keep up the good work.i
What a nice tutorial, keep up the good work.....damn your network is fast
Pedro what is the const http = require("http"); doing @ 6:38 ? I'm trying to understand the process
this is an awesome tutorial. well done pedro
მადლობელი, კარგი ვიდეო იქნება.
thanks bro for amazing explanation !!
thank you, you have an amazing approach to teaching! very inspiring
Absolutely superb content and delivery.
this tutorial really helped me out, thankyou so much
thank you for the tutorial, though you seem to have missed out on clearing socket.on listener by returning socket.off in the useEffect (memory leak?)
nice tutorial, subscribed!
Thank you! This is super helpful. Cleared things up for me that I've been stuck on for weeks.
I'm kind of curious what the io information looks like from component to component. Should the client-side socket only be managed in the highest level component (App), or are there other methods?
Great class and very easy to follow, thanks @PedroTech!!
Regards from a fellow brazilian o/
Awesome! Thanks for sharing and taking the time to explain :)
great and very helpful tutorial
Thanks Pedro
very goood explanations thanks
Big fan 😉 Bro you never disappoint us.
Thank you so much 😀
Thanks bro you are a legend i leart ot of from you dear
Thank you so much!
this is very good. Thank you for the stuff Pedro. I do have a quesiton. If i am connecting to external websocket do i need backend?
Very very good channel 👍👍. Keep up the good work.
Great explanation, keep up the good work
Awesome! Keep it up with the videos!
Loved this one. Thank you
chillhop ending, i like
what if I want to publish it live? What should I use instead of port 3000 and 3001? I am a bit confused on this
🕺 gREAT Vid !!!!!
Eu, another great tutorial, I actually made a social network with the help of your series on nodejs react and mysql.. Do you think it's possible to add this kind of app with all the code I have already.. I was thinking about adding this kind of functionality but it's not easy with an existing front-end and back end already created.. Thanks for your amazing job here.. Greetings from France!
Means a lot bro...❤
Appreciate it! 😊
Thank you so much, you've explained this video really well!!
Very nice explanation! But, can you make a tutorial implementing this with Nextjs API routes and using another use case (receiving data from a streaming API for instance) since literally every socket io on internet is about building a chat app.
you can pretty much follow along with this video since there is a more traditional way of starting your express server and initializing the next build.
Very nice explanation, thank you! 😄
Well understood !
Agree with you this kafer is amazing
great video. it's easy to follow and it's working....
very nice explanation pedro brother'
Keep going man, very cool
Hey Pedro! Thanks for the tutorials and guides, you really helped me stepped up my coding skills. I'm wondering if you could do Docker tutorial also as I want to deploy a couple of my projects. Have a great day :)
So easy to understand 🎉
can u implement little chat app in firebase with socket and react it would be very helpful
Great one there! Thanks
That's just awsome! thanks a looot! :)
Great video thank you Pedro!