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

renaox

v1.1.6

Published

a boring state management

Downloads

1

Readme

Renaox

NPM version npm download

为啥会写这么一个库?

emmm...其实刚入门 react 的时候 接触的 redux,深受繁琐的毒害后就写了这么一个库,现在已经替换掉项目中的 redux,目前只支持 react16+,因为依赖了 react 新的 context Api

特点

  • 支持中间件
  • 中大型项目可多个 contro 区分模块
  • async 自带 loading
  • orm 方法自带 SCU
  • 性能好

安装

npm i -S renaox
or
yarn add renaox

例子

一个 Contro 的时候

import React from 'react';
import ReactDOM from 'react-dom';
import { Store, Provider, orm } from 'renaox';

const Count = ({ loading, count, addCount, asyncAddCount, subtractCount }) => {
  return (
    <div>
      <div>count : {loading ? 'loading...' : count}</div>
      <button disabled={loading} onClick={addCount}>
        count + 1
      </button>
      <button disabled={loading} onClick={asyncAddCount}>
        async count + 1
      </button>
      <button disabled={loading} onClick={subtractCount}>
        count - 1
      </button>
    </div>
  );
};

const mapState = state => ({
  count: state.count,
  loading: state.loading.asyncAddCount, //当使用async后自动生成的loading   loading.xxxName
});

const mapMethods = methods => ({
  addCount: () => methods.addCount(1),
  subtractCount: methods.subtractCount,
  asyncAddCount: methods.asyncAddCount,
});

const CountContainer = orm(mapState, mapMethods)(Count);

const state = {
  count: 0,
};

const methods = {
  syncs: {
    addCount(state, payload) {
      state.count = state.count + payload;
    },
    subtractCount(state, payload) {
      state.count = state.count - 1;
    },
  },
  asyncs: {
    async asyncAddCount(payload, rootState) {
      await new Promise(resolve => {
        setTimeout(resolve, 2000);
      });
      this.addCount(1);
    },
  },
};
//一个打印state改变前后的log中间件
const log = store => next => (fn, payload) => {
  console.group('改变前:', store.state);
  next(fn, payload);
  console.log('改变后:', store.state);
  console.groupEnd();
};
const store = new Store({ state, methods }, [log]);

ReactDOM.render(
  <Provider store={store}>
    <CountContainer />
  </Provider>,
  document.getElementById('root')
);

多个 Contro 的时候

当稍大的项目就需要分层 则可以使用多个 Contro

///略
const mapState = state => ({
  countA: state.controA.count,
  countB: state.controB.count,
});
///略

const controA = {
  state: { count: 0 },
};
const controB = {
  state: { count: 0 },
};

const store = new Store({ controA, controB });

开源协议

MIT