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

@coaction/mobx

v3.0.0

Published

A Coaction integration tool for MobX

Readme

@coaction/mobx

Node CI npm license

English documentation · 中文文档

A Coaction integration tool for MobX

Installation

Install it with pnpm:

pnpm add coaction @coaction/mobx

Usage

import { create } from 'coaction';
import { bindMobx } from '@coaction/mobx';
import { makeAutoObservable } from 'mobx';

const useStore = create(() =>
  makeAutoObservable(
    bindMobx({
      count: 0,
      get double() {
        return this.count * 2;
      },
      increment() {
        this.count += 1;
      }
    })
  )
);

Limitations

  • @coaction/mobx only supports binding a whole MobX store.
  • Coaction Slices mode is not supported in this adapter.
  • Unknown root properties written directly to the MobX instance are ignored by Coaction's fixed schema. They are not promoted into Coaction raw/public state, and this adapter does not guarantee pruning them from the MobX instance.

setState()

  • It is recommended to update state through store methods, instead of directly updating the state.
  • Any direct mutations to the state outside of methods should be wrapped in setState()
// ❌ it will not be triggered state update
store.getState().counter.count += 1;

// ✅ it will be triggered state update
store.setState(() => {
  store.getState().counter.count += 1;
});

Performance

Benchmark

Measure(ops/sec) to update 10K arrays, bigger is better(view source).

| Library | Test Case | Ops/sec | | -------------- | ------------------------------- | ------- | | @coaction/mobx | bigInitWithoutRefsWithoutAssign | 37.44 | | mobx | bigInitWithoutRefsWithoutAssign | 37.67 | | coaction | bigInitWithoutRefsWithoutAssign | 18,809 | | mobx-keystone | bigInitWithoutRefsWithoutAssign | 8.53 | | @coaction/mobx | bigInitWithoutRefsWithAssign | 1.54 | | mobx | bigInitWithoutRefsWithAssign | 10.78 | | coaction | bigInitWithoutRefsWithAssign | 45.20 | | mobx-keystone | bigInitWithoutRefsWithAssign | 0.13 | | @coaction/mobx | bigInitWithRefsWithoutAssign | 14.99 | | mobx | bigInitWithRefsWithoutAssign | 16.68 | | coaction | bigInitWithRefsWithoutAssign | 255 | | mobx-keystone | bigInitWithRefsWithoutAssign | 2.35 | | @coaction/mobx | bigInitWithRefsWithAssign | 1.01 | | mobx | bigInitWithRefsWithAssign | 7.71 | | coaction | bigInitWithRefsWithAssign | 57.22 | | mobx-keystone | bigInitWithRefsWithAssign | 0.11 | | @coaction/mobx | init | 38.57 | | mobx | init | 43.88 | | coaction | init | 8,523 | | mobx-keystone | init | 41.19 |

This table benchmarks various state management libraries on large initialization tasks. Coaction stands out dramatically, performing at least hundreds of times faster in certain scenarios. For example, in the “bigInitWithoutRefsWithoutAssign” test, Coaction achieves 18,809 ops/sec compared to MobX’s 37.67 ops/sec, over 500 times faster. Similarly, in the “init” test, Coaction reaches 8,523 ops/sec versus MobX’s 43.88 ops/sec, an increase of roughly 200 times. Additionally, Coaction consistently outperforms other libraries across various initialization scenarios, showcasing its exceptional efficiency in handling large-scale data initialization. These results highlight Coaction’s superior performance and make it a highly effective solution for managing complex state in modern front-end applications.

We will also provide more complete benchmarking.

Documentation

You can find the documentation here.