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 🙏

© 2024 – Pkg Stats / Ryan Hefner

rxjs-errors

v1.0.0

Published

Gracefully split value and error streams in RxJS Observables

Downloads

367

Readme

RxJS Error Handling Library

This library provides RxJS operators that allow you to easily handle errors in your streams.

It is inspired by the Result type in Rust, which is a type that can either be a success value or an error value. Further similarity exists with NgRx's Actions, which act as identifiable wrappers for values and can be sent along a single Observable stream.

Installation

You can install this library using npm:

npm install rxjs-errors

Usage

Import the necessary functions from the library:

import { handleError, unwrapSuccess, unwrapError } from 'rxjs-errors';

handleError()

The handleError() function is an RxJS operator that maps the result of an Observable which can error to either a SuccessWrapper object, which will contain the value, or to an ErrorWrapper object, which will contain the error, if it occurs. Both wrapper objects will be passed on as values, eliminating the error event from the stream. This allows for simple error handling by splitting the stream into an error stream and a success stream, with minimal boilerplate.

import { throwError, of } from 'rxjs';
import { handleError, unwrapSuccess, unwrapError } from 'rxjs-errors';

const myStream$ = of('some value').pipe(
    handleError(),
);

myStream$.subscribe(
    value => console.log(value), // { type: 'SuccessWrapper', value: 'some value' }
    error => console.log(error), // never called
);

const myErrorStream$ = throwError('an error').pipe(
    handleError(),
);

myErrorStream$.subscribe(
    value => console.log(value), // { type: 'ErrorWrapper', error: 'an error' }
    error => console.log(error), // never called 
);

unwrapSuccess()

The unwrapSuccess() function is an RxJS operator that unpacks success (next) values that have previously been wrapped by the handleError() operator. This filters out success values from the stream to define the "happy path" for successfully executed operations.

import { of } from 'rxjs';
import { handleError, unwrapSuccess, unwrapError } from 'rxjs-errors';

const myStream$ = of('some value').pipe(
    handleError(),
    unwrapSuccess(),
);

myStream$.subscribe(
    value => console.log(value), // 'some value'
);

unwrapError()

The unwrapError() function is an RxJS operator that unpacks error values that have previously been wrapped by the handleError() operator. This filters out error values from the stream to define the "error path" for failed operations.

import { throwError } from 'rxjs';
import { handleError, unwrapSuccess, unwrapError } from 'rxjs-errors';

const myErrorStream$ = throwError('an error').pipe(
    handleError(),
    unwrapError(),
);

myErrorStream$.subscribe(
    errorValue => console.log(errorValue), // 'an error'
);

Example

Bear in mind that Observable streams complete as they error. It is therefore very important to use the handleError() operator inside nested pipes when the stream is meant to "survive" errors.

Example using Angular's http client:

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

// handles error too late, stream completes
const httpResultWrong$ = makeHttpRequest$$.pipe(
    switchMap(() => this.http.get('some url')),
    handleError()
);

// handles error in time, stream does not complete
const httpResultRight$ = makeHttpRequest$$.pipe(
    switchMap(() => this.http.get('some url').pipe(
        handleError(),
    ))
);

const httpSuccess$ = httpResultRight$.pipe(
    unwrapSuccess(),
);

const httpError$ = httpResultRight$.pipe(
    unwrapError(),
);

Types

This library defines the following types:

SuccessWrapper<T>

A wrapper object that indicates that the contained value stems from a successfully executed operation.

interface SuccessWrapper<T> {
    type: "SuccessWrapper";
    value: T;
}

ErrorWrapper

A wrapper object that indicates that the contained value stems from a failed operation.

interface ErrorWrapper {
    type: "ErrorWrapper";
    error: unknown;
}

Contributing

This library is open source, and contributions are welcome. Please create an issue or pull request if you would like to contribute.