rsocket-js
rsocket-js copied to clipboard
JavaScript implementation of RSocket
Websocketclient receives routing message
## Expected Behavior We use react-js on client side with this resume code: ```js resume: { tokenGenerator: () => Buffer.from(clientUuid), reconnectFunction: (attemptCount) => new Promise((resolve, reject) => { if(attemptCount >...
## Expected Behavior client -> .requestChannel server -> receives .requestChannel server -> sends message 1 client -> receives message 1 client -> sends message 2 server -> receives message 2...
This issue proposes that an effort should be made to re-write the core set of `rsocket-js` packages from [Flow](https://flow.org/) to [TypeScript](https://www.typescriptlang.org/), with a focus on adopting a "small core" mentality...
Bumps [parse-url](https://github.com/IonicaBizau/parse-url) from 6.0.0 to 6.0.5. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
As described below, when calling `bind` on a `WebsocketServerTransport` created with a `WebsocketServer` that uses a listening `http.Server`, the `bind` call never resolves. ------- Original comment body: Hi @viglucci, I'm...
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
## Expected Behavior Remote peer is disconnected when calling `this.socket.end()` in `TcpDuplexConnection.close()`. ## Actual Behavior Some remote peers (clients) do not respect the `end()` call and are able to still...
We can register a callback with an `RSocket` using the `onClose` method. We do not currently have any way to deregister a previously registered callback. ## Motivation I'm sure there...
Adds experimental `ApolloLink` and `ApolloServer` implementations to support GraphQL over RSocket with [Apollo GraphQL](https://www.apollographql.com/). ### Motivation: Spring [recently added support](https://github.com/spring-projects/spring-graphql/issues/339) for GraphQL over RSocket, and we were interested to see...