Socket.IO (with websockets) - the details. (socket io v2)

share ›
‹ links

Below are the top discussions from Reddit that mention this online Udemy course.

Socket io

Reddemy may receive an affiliate commission if you enroll in a paid course after using these buttons to visit Udemy. Thank you for using these buttons to support Reddemy.

Taught by
Robert Bunch

Reddit Posts and Comments

0 posts • 2 mentions • top 2 shown below

r/node • comment
4 points • fredandlunchbox

I just took a socket.io class on udemy, and in the last project he addresses how to build a node cluster with socket.io for horizontal scaling. That should cover as many connections as you'd possibly need.

r/node • comment
1 points • compacct27

Hey absolutely. Just did a small project with this re-creating Slack, and you’ll find the socket.io course here to cover half your needs: https://www.udemy.com/course/socketio-with-websockets-the-details/

As always, be sure you’re getting the $10-15 deal on Udemy.

As for Auth, it’s similar to how Auth is handled normally. I personally use a middleware in Express to check for authentication through a JWT, and socket.io has middleware capability baked into it as well. You can use that to check if the socket is authenticated and prevent connection if it isn’t. Login and signup, I just handle outside of real-time.