Skip to content

A promise-based WebSocket client, providing async/await interface for WebSocket communications.

License

Notifications You must be signed in to change notification settings

Amund/websocket-promise

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@amund/websocket-promise

JSR JSR Score

A promise-based WebSocket client, providing async/await interface for WebSocket communications.

  • Supports JSON-RPC style requests
  • Provides error handling for RPC errors
  • No dependencies
  • Vanilla JavaScript

Installation

deno add @amund/websocket-promise

Usage

import { WebSocketPromise } from 'jsr:@amund/websocket-promise'

// Basic usage
const client = new WebSocketPromise('ws://localhost:8080')
const response = await client.method('mirror', { data: 'test' })
console.log(response) // { method: 'mirror', params: { data: 'test' } }

// Error handling
try {
	await client.method('unknown-method')
} catch (error) {
	console.error('RPC Error:', error.message)
}

// Cleanup
client.close()

API

new WebSocketPromise(url, options)

  • url: WebSocket server URL
  • options: Connection options (timeout, headers, etc.)

client.method(method, params)

  • Send JSON-RPC style requests
  • Returns a promise that resolves with the response

client.close()

  • Close the WebSocket connection cleanly

Testing

Tests use MSW (Mock Service Worker) for WebSocket mocking:

deno task test
# or watch mode
deno task test-watch

License

MIT (check repository for details)

About

A promise-based WebSocket client, providing async/await interface for WebSocket communications.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published