caolan 的好几个开源项目都挺合我口味
比如这个 dispatch
https://github.com/caolan/dispatch/blob/master/lib/dispatch.js
仅 75 行代码,实现了很方便的 dispatch api
昨晚上据此写了一个 switchman
https://github.com/yuest/switchman/blob/master/lib/switchman.js
splitURL 保留,flattenKeys 基本保留,所以 API 没变
只是加入了 add 和 remove 方法,可以在后面再添加 rules,见
https://github.com/yuest/switchman/blob/master/example.js
以及内部的数据结构改得清晰一点
比如这个 dispatch
https://github.com/caolan/dispatch/blob/master/lib/dispatch.js
仅 75 行代码,实现了很方便的 dispatch api
昨晚上据此写了一个 switchman
https://github.com/yuest/switchman/blob/master/lib/switchman.js
splitURL 保留,flattenKeys 基本保留,所以 API 没变
只是加入了 add 和 remove 方法,可以在后面再添加 rules,见
https://github.com/yuest/switchman/blob/master/example.js
以及内部的数据结构改得清晰一点