npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

dd-rxjs

v1.5.4

Published

Rxjs extensions.

Readme

dd-rxjs

Rxjs extensions.

Info

Provides some handy extensions for rxjs library.

Observables

DoneSubject (deprecated, see takeUntilDestroyed in native Angular)

StateSubject

Normal BehaviorSubject but only sets the value in next if it's not the same (identity check) as current .value...

const sbj$ = new StateSubject(123);
sbj$.next(123); // ignored
sbj$.next(234); // accepted

...or if it satisfies inequality with optional equality function:

const sbj$ = new StateSubject({a: 1}, {equal: jsonEqual});
sbj$.next({a: 1}); // ignored
sbj$.next({a: 2}); // accepted

work$ (work$_ for curry)

Wrapper for web Worker: takes a function which gets evaluated with the provided value in a dedicated web worker context. The function is stringified i.e. it needs to be pure and can only use functions inside of it's own scope. The Worker is created, executed and terminated when subscribed.

// e.g. creating some testing data with a delay

// worker$: (val: number) => Observable<string[]>
const worker$ = work$_(
  (data: number) => new Promise<string[]>((resolve) => setTimeout(
    () => resolve(
      Array.from(Array(data), (ii, _) => _.toString().padStart(16, '-'))
    ), 1000)));

const testCount$ = new Subject<number>();
const testData$ = testCount$.pipe(switchMap(this.worker$));
...
testData$.subscribe(console.log);
testCount$.next(1234);

Decorator

RxCleanup

Can be used in class contexts to clean up reactive properties. Completes Subject, unsubscribes SubscriptionLike and is compatible with DoneSubject i.e. calls DoneSubject.done() when encountered. The targeted prototypes have to implement and call the destroy() {} function even if it's empty otherwise (this ensures production build support).

RxCleanupGlobal

Invalid cleanup targets are logged by default - this can be deactivated by setting RxCleanupGlobal.logWarnOnInvalidCleanupTarget = false if it can be ignored. Silly log level on cleanup can be enabled by setting RxCleanupGlobal.logOnCleanup = true.

export class ReactiveDataComponent<T> {
  @RxCleanup() readonly data$ = new BehaviorSubject(<T[]>[]); // auto-completed
  readonly total$ = this.data$.pipe(map((_) => _.length));
  destroy() {}
}

Stable busy-or-error-or-body request streams.

The usual UI case is: based on parameter changes backend data needs to be re-requested - while waiting on the response it should be clear that we are busy and if the request has an error it should not auto-complete the stream (which is what happens in rxjs). The stable stream should be share-able so that there is a component showing the data, a component showing up in case there was an error and another widget indicating that loading is being done by looking at the busy flag.

The result is a stable shared stream where every value adheres to this interface:

export interface WrapBusyErrorBody<T> {
  busy: boolean;
  error?: unknown;
  body?: T;
}
// example for a stream where no query is needed

const triggerReload$ = new Subject<void>();

const userConfigStream$ = rxWrapStream({
  trigger$: triggerReload$,
  apiCall: () => apiService.getUserConfiguration(),
});
// example for a stream where query is needed

const triggerReload$ = new Subject<void>();
const fromDate$ = new StateSubject<string | null>(null);
const toDate$ = new StateSubject<string | null>(null);

rxWrapQueriedStream({
  trigger$: triggerReload$,
  query$: combineLatest([fromDate$, toDate$]),
  apiCall: ([from, to]) => apiService.getItems({from, to}),
});

Reactive Util

rxApplyFirst (rxApplyFirst_ for curry)

Applies first found non-null function to the provided value.

dataStream$.subscribe(rxApplyFirst_(this.setRemoteData, rxNext_(this.cachedData$)));

rxComplete

Completes (not yet completed) Subjects. Compatible with DoneSubject i.e. calls DoneSubject.done() when encountered.

rxComplete(this.doneSubject$, this.behaviorSubject$, this.someSubject$);

rxFalse (rxFalse_ for curry)

Calls next(false) on Subjects. See also rxTrue.

busy$ = new BehaviorSubject(false);

request = (id: string) => of(id)
  .pipe(
    tap(rxTrue_(busy$)),
    switchMap(val => api.requestData$(id)),
    finalize(rxFalse_(busy$)),
  .subscribe(rxNext_(data$));

rxFanOut operator

Implemented as shareReplay({refCount: true, bufferSize: 1}) i.e. first sub starts, others share, last unsub completes.

const sharedStream$ = stream$.pipe(rxFanOut());

rxFire (rxFire_ for curry)

Calls next() on Subjects.

reload = () => rxFire(triggerReload$);

merge(tableFilter$, tableSortColumn$, tableSortDirection$).pipe(debounceTime(0)).subscribe(rxFire_(triggerReload$, saveCurrentParameter$));

rxJust (rxJust_ for curry)

Subscribes to a Subscribable.

logout$ = api.sendLogout$();
...
rxJust(logout$);

rxIfDo

Can be used as operator: checks pipe value or function of value and executes code if true.

eventCodeStream$
  .pipe(
    rxIfDo(
      (code) => code === CODE_FATAL,
      () => console.error('FATAL ERROR!'),
    ),
  )
  .subscribe();

rxIfThrow

Can be used as operator: checks pipe value or function of value and throws exception if true.

eventCodeStream$.pipe(rxIfThrow((code) => code === CODE_FATAL, new Error('FATAL ERROR!'))).subscribe();

rxNext (rxNext_ for curry)

Calls next(value) on Subjects.

// e.g. setter wrapper
currentId$ = new BehaviorSubject(0);
setId = rxNext_(this.currentId$);
setId(1234);

// e.g. instead of: val => subject.next(val)
combineLatest(name$, password$)
  .pipe(map(([name, pwd]) => <UserData>{name, pwd}))
  .subscribe(rxNext_(userData$));

rxNull (rxNull_ for curry)

Calls next(null) on Subjects.

triggerClear$.subscribe(rxNull_(filter$, data$, cache$));

rxTrue (rxTrue_ for curry)

Calls next(true) on Subjects. See also rxFalse.

busy$ = new BehaviorSubject(false);

request = (id: string) => of(id)
  .pipe(
    tap(rxTrue_(busy$)),
    switchMap(val => api.requestData$(id)),
    finalize(rxFalse_(busy$)),
  .subscribe(rxNext_(data$));

rxThrounceTime

Pipe operator which combines throttleTime and debounceTime to ensure stream's starting value, smooth throttling in between and the end value.

interval(100).pipe(take(13), rxThrounceTime(500)).subscribe(console.log);
// 0 6 12
// (in test cases without browser may evaluate to 0 5 10 12)

Util

jsonEqual

Just checks JSON equality.

notNullUndefined

Type guard checking type value not being null or undefined, useful when used in stream$.pipe(filter(notNullUndefined)).

License

MIT