I am creating a very basic chat application. My goal is to create a backup Rails API server, and then create an iOS, Android, web client and desktop client. This is exclusively for learning web sockets and mobile development.
I have never used Actioncable, and my knowledge of Websockets is very limited. I would like to know if I can install Actioncable in my Rails API and associate it with Node (for example).
Does Actioncable Like Any Other Websocket? Can I connect to it from my Node application through ws://<host>/cableand have a pub-sub functional system between any client and Rails?
I apologize if this does not make sense, it is difficult for me to formulate it :)
Thank!
source
share