0.2.5 • Published 6 years ago

node-reconnect-ws v0.2.5

Weekly downloads
7
License
MIT
Repository
github
Last release
6 years ago

node-reconnect-ws

NPM version NPM downloads CircleCI

Install

$ yarn add node-reconnect-ws

Usage

const nodeReconnectWs = require('node-reconnect-ws')
const WebSocket = require('ws')

const wsc = new nodeReconnectWs({
  url: url,
  protocol: [],
  webSocket: WebSocket,
  reconnectInterval: 4000,
  autoConnect: true,
  maxRetries: Infinity,
  wsOptions: {
    headers: {
      foo: 'bar'
    }
  }
})

wsc.on('message', data => console.log(data))
wsc.on('error', err => console.log(err))
wsc.on('maxRetries', times => console.log(`tried ${times} all failed`))

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

node-reconnect-ws © zcong1993, Released under the MIT License. Authored and maintained by zcong1993 with help from contributors (list).

github.com/zcong1993 · GitHub @zcong1993

0.2.5

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

7 years ago

0.0.1

7 years ago