Is there a stable, ready-to-release library for ruby ​​for websockets?

I have been using Socket.io with node.js for some time, but I would really like to do this in Ruby. There seem to be some projects, but most of them are dead, namely:

the only project I could find is em-websocket , which, however, is very low level and does not have a client-side library.

Am I missing a project or librarian, or is there really no way to make WebSockets with Ruby?

+4
source share
2 answers

Perhaps a faye-websocket ? I have never used it hard, but I trust the author.

+3
source

At Pusher, we use and contribute to em-websocket .

On the client, we have our own JavaScript library Pusher, which uses web-socket-js to backup Flash.

Some additional options, including the Pusher open source self-install version (rather than Pusher), are available through a real-time web technology guide

+3
source

Source: https://habr.com/ru/post/1441112/


All Articles