I have a project that requires websockets. I was going to use Node.js , but now I am wondering if Dart M3, respective to websockets, would suit my use case.
There are open questions like:
- How do i deploy/host my server-side dartcode (websocket server)?
- Can I create multiple "rooms", where I would be able to send messages, and where subscribed clients (browsers) receive automatically those messages?
- How many clients can subscribe to those "rooms"?
- ...
Should I just roll for now with Node.js and wait a bit till dart gets ready?
Thx