1.2.3 • Published 6 years ago

redux-mw-ws v1.2.3

Weekly downloads
25
License
MIT
Repository
-
Last release
6 years ago

redux-websocket-middleware

build status

  • Motivation
  • Installation
  • Usage
    • Middleware
    • Action Types
    • Actions

Create actions that dispatch to a websocket. For example:

function writeToSocket(data) {
  return {
    type: "WRITE_DATA",
    payload: data,
    meta: { socket: true }
  }
}
  • Creating and opening the WebSocket for multiple endpoints (you can have one default)
  • Handling JSON encoding/decoding of messages
  • Retrying the connection when lost, and exponentially backing off
  • Batching writes when offline, and sending when available
  • Tests
1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago