文件名称:hox:React的下一代状态管理器
文件大小:87KB
文件格式:ZIP
更新时间:2024-03-14 11:01:36
react state-management reactjs react-hooks TypeScript
English | 霍克斯 React的下一代状态管理器。 特征 只需一个API,简单高效。 几乎没有学习成本。 使用自定义挂钩定义模型。 完善的打字稿支持。 支持多个数据源。 在线试用 安装 yarn add hox # Or npm install --save hox 快速开始 建立模型 在hox中,可以使用createModel处理自定义的Hook,以使其持久且在全局范围内共享。 import { useState } from "react" ; import { createModel } from "hox" ; function useCounter ( ) { const [ count , setCount ] = useState ( 0 ) ; const decrement = ( ) => setCount ( count - 1 ) ; c
【文件预览】:
hox-master
----rollup.config.js(226B)
----.github()
--------workflows()
----yarn.lock(229KB)
----src()
--------renderer.tsx(872B)
--------index.tsx(105B)
--------types.ts(172B)
--------executor.tsx(275B)
--------__tests__()
--------create-model.tsx(2KB)
--------with-model.tsx(3KB)
--------container.tsx(319B)
----README-cn.md(7KB)
----gulpfile.js(1KB)
----.yarnrc(43B)
----tsconfig.json(392B)
----LICENSE(1KB)
----jest.config.js(6KB)
----README.md(8KB)
----.npmrc(43B)
----.gitignore(945B)
----package.json(1KB)