Ben Lesh
Ben Lesh
Given that the hack pipeline doesn't really adequately meet the goals for folks trying to mimic method chains (aka "fluent" interfaces), it seems like the [section on method chaining](https://github.com/tc39/proposal-pipeline-operator/tree/265f2f0e8158d5770bfe9e076084cd3a4e82fd5a#method-chaining-is-limited) might...
## Goals 1. We've wanted to move to a monorepo for quite some time. This is so we can move the docs app out of the project for core components,...
### NOTE (10/28/2024): RxJS 8 is on hold while observable is [being standardized for the web platform](https://github.com/WICG/observable). RxJS 8 should match the web platform as much as possible and support...
We need to deprecate `window`, because it was a really dumb name, and rename it to `windowWith` or the like. I suggest `windowWith` just out of the spirit of `concatWith`...
### feat(lastValueFrom): Adds support for cancellation with AbortSignal. Similar to the update to `firstValueFrom`. This adds a configuration option to unsubscribe from the underlying subscription with an `AbortSignal`. If aborted...
We currently have [special case handling](https://github.com/ReactiveX/rxjs/blob/123a0f256e0022e87dfa249c895670ee745def53/src/internal/operators/groupBy.ts#L273-L290) for `groupBy` that purposefully introduces the following seemingly non-deterministic behavior: [Stackblitz](https://stackblitz.com/edit/rxjs-d2gj5u?file=index.ts) ```ts import { tap, interval, groupBy } from 'rxjs'; const subscription = interval(100)...
Per [this discussion on Twitter](https://twitter.com/guojenman/status/1121793617939447813) Basically, [svelte](http://svelte.technology) has _amazing_ support for RxJS. Particularly in reading from RxJS observables. This very small addition to RxJS would enable Svelte users to _very_...
There's been a smattering of issues around our package structure, locating types, pulling in the proper versions, etc. - [ ] Ensure ESM users are getting ES2015/ESM build (must be...
### Discussed in https://github.com/ReactiveX/rxjs/discussions/6779 Originally posted by **benlesh** January 21, 2022 Thinking about the backpressure-related use cases for interop between async iterables and observable, I think I'd consider it an...