An open API service indexing awesome lists of open source software.

https://github.com/yuki-torii/actioncable-esm

actioncable esm version
https://github.com/yuki-torii/actioncable-esm

actioncable webpack2 yuki

Last synced: 3 months ago
JSON representation

actioncable esm version

Awesome Lists containing this project

README

        

## Install
```bash
$ yarn add actioncable-esm
# or
$ npm i --save actioncable-esm
```

## Usage
```js
import ActionCable from 'actioncable-esm'

var cable = ActionCable.createConsumer('ws://*/websocket')

cable.subscriptions.create('AppearanceChannel', {
// normal channel code goes here...
})

export default cable
```