小流量
简单和微小的助焊剂框架。
安装
npm install petit-flux --save
基本用法
Context是此框架的核心。
import { Context } from "petit-flux" ;
const context = new Context ( ) ;
// constants
const RESULT = "result" ;
// action creators
context . registerActionCreator ( "math" , {
add ( x , y ) {
return [ RESULT , x + y ] ;
} ,
sub ( x , y ) {
return new Promise ( ( resolve ) => {
setTimeout ( ( ) => {
评论0
最新资源