@chust3r/websocket-client
v1.0.4
Published
This project provides a WebSocket client for managing WebSocket connections, handling events, and enabling reconnection strategies with optional message compression. It serves as an abstraction over the native WebSocket API and ensures compatibility acros
Downloads
51
Maintainers
Readme
WebSocket Client
This project provides a WebSocket client for managing WebSocket connections, handling events, and enabling reconnection strategies with optional message compression. It serves as an abstraction over the native WebSocket API and ensures compatibility across different environments.
Table of Contents
Features
- Automatic reconnection with configurable retry options
- Event handling for connection, disconnection, and errors
- Message queuing during reconnection
- Optional message compression using a simple implementation of pako
- Customizable WebSocket configuration
Installation
To install and use the WebSocket client in your project, run the following command:
npm install @chust3r/websocket-client
Usage
To use the WebSocketClient in your application, import it and create an instance by providing the WebSocket server URL and optional configuration options.
import { WebSocketClient } from '@chust3r/websocket-client'
const ws = new WebSocketClient('ws://example.com')
// Listen for connection events
ws.on('connect', () => {
console.log('Connected')
// Listen for message events
ws.on('message', (data) => {
console.log('Message received:', data)
})
})
// Listen for error events
ws.on('error', (error) => {
console.error('Error:', error)
})
// Listen for disconnection events
ws.on('disconnect', () => {
console.log('Disconnected')
})
API Reference
Constructor
constructor(url: string, options?: Options)
Parameters
url
: string
The WebSocket server URL to connect to. This is a mandatory parameter that specifies the location of the WebSocket server.
options
: Options
(optional)
An optional configuration object for the WebSocket connection. It can include:
reconnect
:boolean
(default:false
)
Indicates whether the client should automatically reconnect to the server if the connection is lost.reconnectInterval
:number
(default:1000
)
The interval (in milliseconds) to wait before attempting to reconnect after a disconnection.reconnectAttempts
:number
(default:5
)
The maximum number of reconnection attempts before giving up.useCompression
:boolean
Whether to use compression for the messages sent over the WebSocket connection.compressor
:ICompressor
(optional) You can provide a custom compressor implementation to use for compressing and decompressing messages. By default, it uses apako
implementation.heartbeat
:boolean
(default:false
) Provides the ability to enable heartbeat mechanism for detecting connection status, use eventsping
andpong
, if the eventpong
is received, the connection is considered as alive.heartbeatInterval
:number
(default:10000
) The interval (in milliseconds) for sending heartbeat messages.query
:Record<string, string | number | boolean>
(optional) Query string to send with the WebSocket connection. This can be used to pass additional parameters or other information to the server.
Compressor
The compressor
option allows you to provide a custom compressor implementation to use for compressing and decompressing messages. By default, it uses a pako
implementation.
interface ICompressor {
compress(data: string): Uint8Array
decompress(data: Uint8Array): string
}
Message Structure
IMessage
The structure used for managing incoming and outgoing messages is defined as follows:
interface IMessage {
timestamp: string //→ Timestamp in formatted ISO 8601 string
event: string //→ Used to identify the type of event
data?: any //→ The data payload of the message
}
Description
timestamp
:string
This property holds the timestamp of the message in ISO 8601 format (e.g.,2024-09-12T12:34:56Z
). This format is widely used for date and time representation and ensures consistency across different systems and languages.event
:string
The event property is crucial for filtering handlers in the WebSocket client. When sending or receiving messages, the event property specifies the type of action or information being conveyed. Handlers can listen for specific events, allowing for more organized and manageable event handling. For example, if an event is related to a user connection, handlers can be set up to respond only to that particular event.data?
:any
The data property is optional and can contain any additional information related to the event. It can be of any type, such as a string, number, object, or array. This flexibility allows developers to pass custom data along with the event, facilitating rich communication between the client and server.
Methods
Listen to events with on
This method is used to register event listeners for the WebSocket connection events.
Default event listeners include:
connect
: Triggered when the WebSocket connection is established.disconnect
: Triggered when the WebSocket connection is disconnected.error
: Triggered when there is an error in the WebSocket connection.reconnect_attempt
: Triggered when the WebSocket client attempts to reconnect to the server.reconnect_failed
: Triggered when the WebSocket client fails to reconnect after reaching the maximum number of attempts.
ws.on('connect', () => {
console.log('Connected')
})
ws.on('disconnect', () => {
console.log('Disconnected')
})
ws.on('error', (error) => {
console.error('Error:', error)
})
ws.on('reconnect_attempt', () => {
console.log('Reconnecting...')
})
ws.on('reconnect_failed', () => {
console.log('Reconnection failed')
})
You can also register custom event listeners.
ws.on('connect', () => {
ws.on('message', (data) => {
console.log('Message received:', data)
})
})
Listen events with once
This method is used to register an event listener that will be triggered only once.
ws.once('connect', () => {
console.log('Connected')
})
Listen all events with onAny
This method is used to register an event listener that will be triggered for all events except events in the EventMap interface as connect
, disconnect
,reconnect_attempt
, reconnect_failed
,and error
.
ws.onAny((data) => {
console.log(data.event)
})
Emit events with emit
This method is used to emit events to the WebSocket server.
ws.on('connect', () => {
ws.emit('message', 'Hello, server!')
ws.emit('test', {
foo: 'bar',
quux: 'baz',
})
})
If the client is not connected, the message is queued for later transmission. Otherwise, it is sent immediately.
Subscribe to events with sub
The sub
method is used to join a specific channel or room on the WebSocket server. Internally, this method sends a common message with a specific event type called sub, along with a payload that includes the topic (or channel) the client wishes to subscribe to.
ws.sub('chat/messages')
Internal mechanics
When the subscribe method is called, the client sends a message to the server indicating the desired subscription:
event Type
:sub
payload
: Contains the topic (or channel) the client wishes to subscribe to.
The server manages the subscription logic, ensuring the client is correctly added to the specified channel and is set up to receive messages directed at that channel.
Listening for messages
To listen for messages emitted to the subscribed channel, the client uses the on method. This method allows the client to define a callback that is triggered whenever a message of the specified type is received.
Event filtering
The on
method can be used to listen for events based on their type, which means that if the client subscribes to a channel where an event (e.g., hello) is emitted, it will be able to capture that event using the same on
method. The messages are filtered by their event type, allowing for organized handling of events.
Unsubscribe from events with unsub
The unsub
method is used to unsubscribe from a specific topic on the WebSocket server. This method removes the client’s subscription to the given topic, preventing it from receiving any further messages associated with that topic.
ws.unsub('chat/messages')
Internal mechanics
Check for the existence of the topic in the client's subscriptions.
The method first checks if the client is currently subscribed to the specified topic by verifying its presence in the subscriptions collection.
If the topic is not found, a warning is logged to the console indicating that the subscription does not exist.
Remove the topic from the client's subscriptions.
- The method removes the topic from the client's subscriptions by removing it from the subscriptions collection.
Send a message to the server indicating that the client is no longer subscribed to the topic.
- The method sends a message to the server indicating that the client is no longer subscribed to the specified topic.
Publish messages with pub
The pub
method is used to publish messages to a specific topic on the WebSocket server. This method allows the client to send data to all subscribers of the specified topic, enabling real-time communication and updates.
ws.pub('chat/messages', 'Hello, world!')
Internal mechanics
Check if the topic exists in the client's subscriptions.
The method first checks if the client is currently subscribed to the specified topic by verifying its presence in the subscriptions collection.
If the topic is not found, a warning is logged to the console indicating that the subscription does not exist.
Send a message to the server indicating that the client is subscribed to the topic.
- If the subscription exists, the method emits a
pub
event, passing an object that includes both the topic and the data. This action informs the server and other components that a message is being published to the specified topic
- If the subscription exists, the method emits a
Get all subscriptions with getSubscriptions
This method is used to get all subscriptions.
ws.getSubscriptions()
Close the WebSocket connection with disconnect
This method is used to close the WebSocket connection.
ws.on('connect', () => {
ws.disconnect()
})
Get raw WebSocket instance with getRawSocket
This method is used to get the raw WebSocket instance.
ws.getRawSocket()
Get the WebSocket Connection State with getStatus
This method is used to retrieve the current state of the WebSocket connection. It returns the status of the connection, which can help you manage your application’s behavior based on the connection state.
ws.getStatus()
There are three possible connection states:
connected
: The WebSocket client is connected to the server.disconnected
: The WebSocket client is disconnected from the server.reconnecting
: The WebSocket client is reconnecting to the server.
License
This project is licensed under the MIT License. See the LICENSE file for more details.
Contributing
Contributions are welcome! Here are some guidelines to help you get started:
How to Contribute
Fork the repository: Click the "Fork" button in the top right corner of the repository page to create a copy in your GitHub account.
Clone your fork: Clone your fork to your local machine using the following command:
git clone https://github.com/your-username/repository-name.git
- Create a new branch: Before making changes, create a new branch for your feature or bug fix:
git checkout -b my-new-feature
Add your changes: Make your changes: Make the necessary changes and be sure to test them.
Commit your changes: Commit your changes using the following command:
git add .
git commit -m "Description of the changes"
- Push your changes: Push your changes to your fork using the following command:
git push origin my-new-feature
- Create a pull request: Go to your fork's page on GitHub and click on "New Pull Request." Then, choose the branch you created and follow the instructions to submit your Pull Request.