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

umi-plugin-mobx-state-tree-complexstore

v0.0.1-beta.14

Published

use mobx-state-tree with umi@2.

Downloads

24

Readme

umi-plugin-mobx-state-tree

umi@2 的 mobx 插件。

约定加载 src/stores 下的所有文件(可通过设置 exclude 排除某些文件)

默认开启按需加载,build 之后根据路由添加 pages 下的 stores 文件(可通过设置 dynamicImport 关闭)

所有store全部加载到统一的store对象上,默认取文件名作为inject查找的对象名。

inject(({stores}) => ({
    list: stores.list
}))(observer(App));

注意:这里的list,实际上是stores.stores.list

由于umi默认加载pages下面的文件生成路由,所以要通过设置routes/exclude来把stores排除

routes: {
  exclude: [/stores\//],
},

快速使用

安装

$ npm i umi-plugin-mobx-state-tree

.umirc.js

export default {
  plugins: ["umi-plugin-mobx-state-tree"]
};

支持配置

export default {
  plugins: [
    [
      "umi-plugin-mobx-state-tree",
      {
        exclude: [/^\$/] //这里是以$开头的stores不会被引用
      }
    ]
  ]
};

exclude:提供 src/stores 下的文件不被注册的功能,比如加上$前缀就不会被注册了,值为正则表达式

/src/mobx.js

可以通过src/mobx.js配置初始值和开启mobx-react-devtools调试工具

export function config() {
  return {
    devTools: true,
    mstTools: false,
    initStores: {
      list: {
        name: "init list name"
      }
    }
  };
}

可以通过设置mstTools: true开启mobx-devtools-mst,这个功能需要依赖mobx浏览器调试工具使用。

这个配置可以通过runtime修改。

examples codesandbox