Action Cable for react native
npm install action-cable-react-native```
npm install action-cable-react-native --save
It has all the same methods as ActionCable and usage is exactly the same.
`
import ActionCable from 'action-cable-node'
const App = {}
App.cable = ActionCable.createConsumer()
App.cable.subscriptions.create({ channel: "ChatChannel", room: "Best room!"})
etc...
``
See the ActionCable documentation for more.