restorative:简单的ReasonML状态管理

时间:2024-05-26 12:57:47
【文件属性】:

文件名称:restorative:简单的ReasonML状态管理

文件大小:133KB

文件格式:ZIP

更新时间:2024-05-26 12:57:47

react reasonml reason-react Reason

恢复性是一个简单的ReasonML状态管理库。 带有React钩子。 尽管您可以充分利用核心ReasonML和React功能,但是您可能会发现自己需要全局状态进行管理。 Restorative可能是您的解决方案。 具有带有性能订阅和选择器的reduce存储。 JavaScript中的类似项目包括和 。 安装 npm install --save restorative 添加到bsconfig.json "bs-dependencies": [ "restorative" ] 建立店铺 type state = int ; type action = | Increment | Decrement ; let api = Restorative . createStore( 0 , (state , action) => switch (action) {


【文件预览】:
restorative-master
----.gitignore(97B)
----package.json(802B)
----src()
--------Restorative.rei(685B)
--------Restorative.re(4KB)
----LICENSE(1KB)
----__tests__()
--------Restorative_test.re(6KB)
----README.md(3KB)
----example()
--------Index.re(2KB)
--------index.html(199B)
----bsconfig.json(515B)
----.circleci()
--------config.yml(967B)
----restorative.png(9KB)
----yarn.lock(306KB)

网友评论