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

mobx-safe

v1.2.2

Published

Drop-in `action` replacement for MobX that can handle errors before throwing.

Downloads

36

Readme

mobx-safe

Greenkeeper badge Build Status NPM version

Drop-in action replacement for MobX that can handle errors before throwing.

import { action, caughtErrors } from "mobx-safe";

class DangerZone {
    @action
    public enter() {
        throw new Error("Lana!");
    }
}

setTimeout(() => new DangerZone().enter(), 100);
setTimeout(() => console.log(caughtErrors), 200); // [Error: Lana!]

Why

Generally, MobX recommends using native browser/Node error handling for uncaught errors. IE and older versions of Edge don't provide stack traces in certain cross-domain situations (link/link). In order to react to errors and guarantee call stacks you'll need to handle the errors yourself in the original execution stack. Knarly!

See this MobX issue.

Usage

action

Import action from mobx-safe and use as you would mobx's action. That's it!

import { action } from "mobx-safe";

const wrapped = action(() => {
    throw new Error("What!?");
});

// Error: What!?
wrapped();

Basic method wrapping and TypeScript decorators are supported. Babel decorators are not supported.

caughtErrors

Type: IObservableArray<Error>

Synchronously pushed to whenever an action error throws, before it's rethrown or handled. Observe this to react to errors having been thrown.

import { autorun } from "mobx";
import { caughtErrors } from "mobx-safe";

autorun(() => {
    console.log(`There are ${caughtErrors.length} errors.`);
});

configure.clearOnCaughtErrorHandlers

Type: boolean

If given as true, clears any handlers added for caught errors.

import { configure as configureMobXSafe } from "mobx-safe";

configureMobXSafe({
    clearOnCaughtErrorHandlers: true,
});

configure.onCaughtError

Type: (handler: (error: Error) => void) => void

Adds a method to be called whenever an error is pushed to caughtErrors. These methods are called synchronously before caught errors are rethrown.

import { configure as configureMobXSafe } from "mobx-safe";

configureMobXSafe({
    onCaughtError(error) {
        console.log("Found an error:", error);
    },
});

If passed with clearOnCaughtErrorHandlers, only the added onCaughtError will be registered after configure finishes.

Best Practices

Clear Between Tests

Multiple tests that interact with mobx-safe can leave with multiple onCaughtError handlers active. Clear state after each test with configure.clearOnCaughtErrorHandlers.

For example, in Jest and other test frameworks with afterEach:

afterEach(() => {
    const { configure } = require("mobx-safe");

    configure({
        clearOnCaughtErrorHandlers: true,
    });
});