autobahn-js icon indicating copy to clipboard operation
autobahn-js copied to clipboard

WAMP in JavaScript for Browsers and NodeJS

Results 93 autobahn-js issues
Sort by recently updated
recently updated
newest added

The `8.0.0` version of `ws` introduced some breaking changes around protocols. Attempting to create a connection with this version yields the following error. ```js could not create WAMP transport 'websocket':...

bug
needs-investigation
CI-CD

Hi, I am using AutobahnJs lib for wamp on my browser. how can I handle error if it occurs during connection, subscribe and other events? I was going to handle...

autobahn.Error now contains error, args and kwargs. According to the [spec](https://wamp-proto.org/_static/gen/wamp_latest.html#call-error), there's _always_ a "details" parameter available (it's a dict). This should be stored in the Error class. In the...

enhancement
needs-discussion

put upper limit to dependency module versions so that a major release don't break autobahn

Hello for everyone. Even using 0.0.0.0, even using wss://, the websocket shows me a error:' WebSocket connection to 'wss://0.0.0.0:8081/' failed. Error on line on Autobahn.js: self._websocket = new WebSocket(self._wsuri, [ab._subprotocol]);...

ws@8 contains breaking changes - #550

Adjust based on fix made in websockets/ws. In this commit: https://github.com/websockets/ws/commit/0aecf0c95b41eaeeec9e265d5f1cb6c96e2f4d08#diff-44c2c0628f273ea1ab6dbb7c1fa81a1765d8adf9fbdd083e2a3b93d8d1cb5f61

When there's a protocol violation it invokes the optionally registered error handler (eventually `on_internal_error`) however it's provided with `undefined` as the error rather than an Error object. This appears to...

There needs to be a way to eliminate retry jitter. For my use case, I need the autobahn client to attempt to reconnect to a server every 2 seconds. With...