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.
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
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 ❤
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
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!
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.
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?
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 :)
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.
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
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.
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?
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!
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.
hi, I am also from Bangladesh....❤❤❤❤❤
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
did u integrate it in your project ?
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.
You are the best teacher on the platform. Keep up the good work !
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 please please make full-stack video using mern stack + AWS S3
Cool ! I learned a lot of things from this channel. Thank you Pedro
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
Wow, ce tutoriel is too good man. Sooo concise and neat. Maintenant je peux développer mon multiplayer game in no time. Merci!
Hats off! I owed you a lot, this tutorial was the best!!
Bro you've saved my job so many times! ♥️
Thanks again!
Thank you so much for the support
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
wow really good video. I was struggling with this for last 2 days for implementing in a project. Thank you pedro.
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 ❤
This was exceptionally to the point explanation, really the best @Pedro Tech
great video mate, straight to the point & well explained!
Brilliant tutorial video. Served me well as a refresher course. One of the few videos I enjoyed watching!
best video to understand concept of socket io in half hour
Great Job man that was one of the best tut i ever had.
Keep the great work up
Pedro what is the const http = require("http"); doing @ 6:38 ? I'm trying to understand the process
Awesome video! Pedro you have some of the best content on YT! Keep it up!
very detailed, I find it very easy to understand and helps me go deeper into it more easily, thank you bro😘
Great tutorial, I don't have words to praise your content.
Great video Pedro. Exactly what I was looking for - many thanks
Really waiting for it 🙂
:)
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
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!
You made my life easy my man your so great🤞
thank you very much, this will help me do my hard project at my university, thank youu
You are welcome!
Wow it was very simple quick and easy to understand tutorial thank you so much for the video 👍
Thanks a lot for this tutorial pedro! Very easy to follow along.
Thank you for this video bro, saved me a lot of time reading documentation!
WOWWW, simply a nice explaination. Thank you
Perfect introduction, thanks a lot man :D
I really enjoyed your tutorial. It was very easy to follow and understand.
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.
you explain it very well :)
Thanks!!
Great, simple, crisp explanation❤
Bro. you are a lifesaver. keep up the good work.i
this is an awesome tutorial. well done pedro
This is great. I just wanted to learn this. Thanks a lot.
Hey thanks, your sokcet video is best over the internet
This is amazing! Great looking thumbnail btw
Thanks! 😁
this tutorial really helped me out, thankyou so much
Absolutely superb content and delivery.
Short but really informative! Thanks a lot
Nice and short explanation , Love from India ❤❤❤❤
I love you bro LMFAO
Learned so much in 30mins
What a nice tutorial, keep up the good work.....damn your network is fast
I wish you posted this sooner, would’ve saved me a lot of time XD
thank you, you have an amazing approach to teaching! very inspiring
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?
Thanks for taking the time to really break this down
Awesome! Thanks for sharing and taking the time to explain :)
Super Cool. Thx another Pedro!🤓
thanks bro for amazing explanation !!
Greetings from Colombia! thanks for the video. One question, why put socket in the useEffect dependencies if its ref is never going to change?
Thanks man , saw this any implemented online playing for my game
Big fan 😉 Bro you never disappoint us.
Thank you so much 😀
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 :)
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.
Great class and very easy to follow, thanks @PedroTech!!
Regards from a fellow brazilian o/
Thank you so much, you've explained this video really well!!
best tutorial about socket io, thank u sir 👍👍
Great explanation, keep up the good work
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?
nice tutorial, subscribed!
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
Awesome! Keep it up with the videos!
great video. it's easy to follow and it's working....
I have never used sockets but its look great, thanks for video
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
Loved this one. Thank you
Very very good channel 👍👍. Keep up the good work.
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! 😄
მადლობელი, კარგი ვიდეო იქნება.
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?
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?)
thank you!! this is the perfect tutorial!
Thanks bro you are a legend i leart ot of from you dear
Thank you so much!
Great video thank you Pedro!
Thank you so much for that. clean tutorial.
This was very helpful, thanks!
Thanks a lot bro, learnt something new
Thank you so much for your videos very helpful like the way you explain. Nice job 👍
this is a great explanation! thx!
Thank you for this excellent content, I found it very useful
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!
Keep going man, very cool
muchas gracias por el tutoria rey, aprendi mucho gracias a este video
That's just awsome! thanks a looot! :)