Is socket.io the best for building a chat apps?

zyzer01

Newbie
Joined
Apr 28, 2023
Messages
27
Reaction score
9
I'm about to build a chat app I've checked out socker.io, looks good. But then I want to hear from past practical experiences, especially from Javascript developers
 
Ya i'm a real dev. Prolly the easiest library with most documentation
 
Don't think the best. It depends on various factors, such as the requirements of your application, the complexity of the features you need, and your team's experience and preferences.
 
Chat apps and real time data display apps (e.g. crypto price ticker) are perfect use cases for web sockets. But if all you need is some occasional data from the api, it is a bit overkill to use web sockets. Also, you can’t really go serverless with websockets, because the backend function will not be available after a while (30 seconds for vercel for example).
 
Back
Top