Peer
Peer object allows easily interacting with connected clients.
Websocket hooks accept a peer instance as their first argument. You can use peer object to get information about each connected client or send a message to them.
console.log
it will be automatically stringified with useful information including the remote address and connection status!API
peer.send(message, compress)
Send a message to the connected client
peer.addr
The peer address (might be undefined
)
peer.id
A unique id assigned to the peer.
peer.readyState
Client connection status (might be undefined
)
peer.ctx
peer.ctx
is an object that holds adapter specific context. It is scoped with peer.ctx.[name]
.
peer.subscribe(channel)
Join a broadcast channel.
peer.unsubscribe(channel)
Leave a broadcast channel.
peer.publish(channel, message)
broadcast a message to the channel.
peer.close(code?, number?)
Gracefully closes the connection.
Here is a list of close codes:
1000
means "normal closure" (default)1009
means a message was too big and was rejected1011
means the server encountered an error1012
means the server is restarting1013
means the server is too busy or the client is rate-limited4000
through4999
are reserved for applications (you can use it!)
To close the connection abruptly, use peer.terminate()
.
peer.terminate()
Abruptly close the connection.
To gracefully close the connection, use peer.close()
.