node-reconnect-ws
TypeScript icon, indicating that this package has built-in type declarations

0.2.5 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i node-reconnect-ws

Weekly Downloads

13

Version

0.2.5

License

MIT

Unpacked Size

6.3 kB

Total Files

5

Last publish

Collaborators

  • zcong