动作电缆节点 从Rails 5中提取的动作电缆并打包为Node模块 安装 npm install action-cable-node --save 用法 它具有与ActionCable相同的所有方法,用法完全相同。 import ActionCable from 'action-cable-node' const App = {} App.cable = ActionCable.createConsumer() App.cable.subscriptions.create({ channel: "ChatChannel", room: "Best room!"}) etc... 有关更多信息