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

This PR introduces integration with AsyncIterator which allows asynchronously iterate over a data stream using a common `for-loop` statement. For example: ``` const asyncIterable = rsocket .requestChannel(...) .toAsyncIterable(4); for await...

enhancement

Implement the ext frames in javascript: https://github.com/rsocket/rsocket/tree/master/Extensions

enhancement
help wanted

Ref to: https://github.com/reactor/reactor-core/issues/3178 This issue is kind off topic for Reactor Core Java, but there are no way to post it to https://github.com/spring-attic/reactor-core-js as those repository is archived. @simonbasle I...

Update packages to use the `@rsocket` NPM org namespace. ### Motivation: - We have the `@rsocket` organization name on NPM so we should use it. - Publishing packages to the...

enhancement
1.0

We should look into using `Uint8Array` as an alternative to `Buffer` since from what I am reading it is supported in both Browser & Node runtimes. ## Motivation Simplify usage...

enhancement
1.0

Bumps [graphql](https://github.com/graphql/graphql-js) from 16.6.0 to 16.8.1. Release notes Sourced from graphql's releases. v16.8.1 (2023-09-19) Bug Fix 🐞 #3967 OverlappingFieldsCanBeMergedRule: Fix performance degradation (@​AaronMoat) Committers: 1 Aaron Moat(@​AaronMoat) v16.8.0 (2023-08-14) New...

dependencies

Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4. Release notes Sourced from word-wrap's releases. 1.2.4 What's Changed Remove default indent by @​mohd-akram in jonschlinkert/word-wrap#24 🔒fix: CVE 2023 26115 (2) by @​OlafConijn in...

dependencies

Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2. Release notes Sourced from semver's releases. v5.7.2 5.7.2 (2023-07-10) Bug Fixes 2f8fd41 #585 better handling of whitespace (#585) (@​joaomoreno, @​lukekarrys) Changelog Sourced from semver's...

dependencies

Hello, Working with Angular 16, I met the following error : ``` ReferenceError: Buffer is not defined at serializeSetupFrame (Codecs.js:315:11) at serializeFrame (Codecs.js:227:20) at WebsocketDuplexConnection.send (WebsocketDuplexConnection.js:86:55) at ClientServerInputMultiplexerDemultiplexer.send (ClientServerMultiplexerDemultiplexer.js:144:23) at...

browser

First of all, Thanks for your nice work! But when I follow your guide, I got in trouble. ## Expected Behavior I followed example page code of [Link](https://rsocket.io/guides/rsocket-js/client/rsocket-websocket-client) I thought...

documentation