Status: Beta
Makes it easier to chain ur async actions with ws and structured data in send method, controls connect state.
npm install --save -E [email protected]
Initializing Swindon:
import { Swindon } from 'swindon';
const swindon = new Swindon('/ws');
This creates a auto-reconnecting instance of the library. It's adviced that this object a singleton as swindon allows multiple applications to be joined together using single websocket.
Now we can make method calls:
const result = await swindon.call("my_method", ['arg1'], {'kwarg1': 1})
Technically you can wait for connection to be established:
await swindon.waitConnected()
But that is rarely useful, because we usually queue call
's internally.
Swindon sends minimal user info (at least user_id
) right after connection
is established (technically in hello
message). You can fetch it like this:
const user_info = await swindon.waitConnected()
Because swindon allows only subcriptions and unsubscriptions from the backend we combine "subscription" API with the method call:
const guard = swindon.guard()
.init('notifications.subscribe', [mytopic])
.listen('notifications.'+mytopic, message => {
// react-like code
this.setState(message.n_notifications)
})
.deinit('notifications.unsubscribe', [mytopic])
Then when component doesn't need the data any more just call "close":
guard.close()
Note: notifications.subscribe(mytopic)
will be called on every reconnect of
the websocket, until close
is called.