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

JavaScript implementation of RSocket

Results 60 rsocket-js issues
Sort by recently updated
recently updated
newest added

When decoding a json to object, it added **escape** to string based value. ## Expected Behavior ```json {"id":"5f0bcaa46e0ba209eb68f47b","body":"test","sentAt":"2020-07-13T02:44:52.628Z"} ``` ## Actual Behavior ```json {"id":"5f0bcaa46e0ba209eb68f47b","body":"\"test\"","sentAt":"2020-07-13T02:44:52.628Z"} ``` ## Steps to Reproduce I...

needs triage

## Expected Behavior When a connection is closed due to a protocol-level error (such as rejected SETUP), the connection status should be set to `ERROR`. As per the documentation here:...

needs triage

What are your thoughts on Flowable's API compared to the _latest_ RxJS? (v6 as of this writing, v4 API used to be very similar to Flowable) The biggest differences off...

question

Providing a pleasant experience when using RSocket-js in browser environments is a goal of the work we are doing in #158, and as we approach a preview release, I would...

enhancement
1.0

i have a rsocket instance when i call requestChannel without any data send, actually request(on the other side) won't be occured. similar when transport of the rsocket has been gone,and...

question

Hello everyone, I don't know if this is normal, but on each cycle (**keepAlive** interval) rsocket sends duplicate empty requests like this : (two requests and two responses in same...

needs triage

I'm trying to use `RSocketServer` in javascript, but when I provide `serializers` option, the frames are getting deserialized twice. ``` const server = new RSocketServer({ // .... getRequestHandler: socket =>...

needs triage

## Motivation In Java implementation, custom application errors can be thrown using `RSocketErrorException`. https://github.com/rsocket/rsocket-java/blob/37fc68c68f4b61d826084330a7b0476a456b63da/rsocket-core/src/main/java/io/rsocket/RSocketErrorException.java#L27 But in Js implementation, there is no way to throw custom Errors, All Js Errors are...

enhancement
0.x

_[One line description of your change]_ ### Motivation: _[Explain here the context, and why you're making that change. What is the problem you're trying to solve.]_ ### Modifications: _[Describe the...

I would like to enable my client to reconnect to my server in case the server restarts. I tried thus the example provided in [rsocket-js/packages/rsocket-examples/src/ResumeExample.js](https://github.com/rsocket/rsocket-js/blob/c539b3a42d56780011392fc06ebd488d09f929da/packages/rsocket-examples/src/ResumeExample.js). It seems however that even...

question