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

Currently, when no serializers are explicitly configured, AB JS will only announce: `'sec-websocket-protocol': 'wamp.2.json, wamp.2.msgpack'` despite all of JSON, MsgPack and CBOR being available. This should be: `wamp.2.cbor, wamp.2.msgpack, wamp.2.json`...

enhancement
core
PRIO HIGH

It doesn't look like create_connection supports all (any) of the retry options supported by the standard "Connection" call .. adding the options post-setup seems to be a work-around; ``` connection...

bug
core
PRIO HIGH

FIXME: fails at minimization # "ERROR - [JSC_CANNOT_CONVERT] This code cannot be converted from ES6. extending native class: Map" # even already with "--compilation_level WHITESPACE_ONLY" # see: https://gist.github.com/oberstet/8c3ad6d0ae58293cb34027054f1c02b2 https://github.com/crossbario/autobahn-js/blob/abc04bfed0e70988e4d7a1795b709ce68e5e83e6/Makefile#L81 ```...

enhancement
CI-CD
XBR

I've spent an hour trying to create a combined XBR buyer+seller delegate (using SimpleBuyer and SimpleSeller), but failed. > one (unrelated) issue I ran into is this https://github.com/crossbario/autobahn-js/issues/471 I got...

bug
needs-investigation
PRIO HIGH
XBR

My WAMP router is running at home behind a DS-Lite cable modem (i.e. I only have an external IPv6 address, but no IPv4). I use Cloudflare to proxy IPv4 to...

enhancement
needs-design
PRIO HIGH

currently, xbr data encryption keys bought/sold from a xbr client delegate are stored in an ephemeral data structure. we need to add (an option): persist to disk in an embedded...

enhancement
needs-discussion
XBR

migrated from https://github.com/crossbario/autobahn-python/issues/1244

bug
core

We should really maintain and publish the changelog properly https://github.com/crossbario/autobahn-js/blob/master/doc/changelog.md

enhancement
core
CI-CD

There is no way to set retry behaviour during transport creation failure since this block does not have any options associated with it: https://github.com/crossbario/autobahn-js/blob/c3ca7c1fd292a68df1a6e3bf108518adb110fd5f/lib/connection.js#L256-L270 While the event can be caught...

as we can see the url concatenation at line https://github.com/crossbario/autobahn-js/blob/master/lib/transport/longpoll.js#L72 if any users wants to set any query params, it will break the long polling transport maybe use a lib...