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

HI, we are using RSocket-Java as server and using the RSocket-client from rsocket-core js as client over Web-socket transport, rsocket-core include the server and client code which made the rsocket-core...

enhancement

When using requestChannel(), one can subscribe to the Flowable returned. One can unsubscribe as well. If one subscribes again to this flowable, it does not work. ## Expected Behavior After...

Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.6.6 to 2.6.7. Release notes Sourced from node-fetch's releases. v2.6.7 Security patch release Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th...

dependencies

LiteBuffer isn't supported in WebWorker context as the code use window object which is undefined in WebWorker Solution which seems to work for me Use following code in LiteBuffer.js ```...

Fixes #195 ### Motivation: Vite throws an exception when you try to access the `default` export of `buffer` ### Modifications: The exception can safely be ignored and interpreted as the...

needs triage

In `_sendStreamPayload` of `RSocketMachineImpl`, when `flags` is created, the flag for present Metadata (M) is not set, which causes the `payload.metadata` value to not be included in the encoded payload...

bug
0.x

RSocket error frames are turning into standard `Error()` objects, and expanded by a `source` property. The `Error` type does not reflect that fact. ## Expected Behavior All errors should be...

enhancement

# This is a web devtool to test rsocket server ## repo: https://github.com/HaiyaoTec/rsocketMan ## try this on http://rsocketman.com/ ![image](https://user-images.githubusercontent.com/76603360/151500597-da5202fd-37e7-4928-9881-a7c6239390af.png)

question

Hey, I'm trying to use RequestResponse with Spring Boot as RSocketServer. I have a Controller Method like this: ```java @MessageMapping public Mono request() { return Mono.empty(); } ``` My Request...

needs triage

Open question: how much throughput have you guys been able to get? Not sure how to performance tune my app and I don't have any benchmark to compare to. I...

question