文件名称:PureState:最有效的愚蠢状态管理库
文件大小:6KB
文件格式:ZIP
更新时间:2024-03-11 19:20:16
JavaScript
PureState.js 一个愚蠢,简单,干净,可笑的小状态管理库,应该涵盖Flux / Reflux / etc等复杂解决方案的每个用例,而无需过度设计。 请参阅下面的rant。 var state = require ( "./purestate" ) ; // Stateful variables are just JS values wrapped with a `state` call var x = state ( 0 ) ; // This reads a stateful variable; read as "console.log(x)" console . log ( x ( ) ) ; // This writes a stateful variable; read as "x = 1" x ( 1 ) ; // Stateful variables can de
【文件预览】:
PureState-master
----README.md(3KB)
----example_todo.html(1KB)
----purestate.min.js(457B)
----LICENSE(1KB)
----example_counter.html(573B)
----purestate.js(3KB)
----example_pure_dependencies.js(438B)