纯店 只需编辑应用程序的状态即可。 pure-store是一种快速,简单,不变的存储,可让您直接(即必须)更新状态。 它也可以很好地与打字稿一起使用。 与Redux的比较 带React挂钩 pure-store可以在没有React的情况下使用,但是如果您正在使用React,则可以使用usePureStore挂钩。 我们可以从上图创建简单的计数器,如下所示: import createStore from "pure-store/react" const store = createStore ( { count : 0 } ) export default ( ) => { cons