This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 92
/
state-managers.js
68 lines (68 loc) · 2.43 KB
/
state-managers.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
module.exports = {
key: "state-managers",
name: "State Managers",
description: "These manage the state of your JavaScript application.",
aka: ["flux libraries"],
tags: [
{
name: "pure flux",
description: "Matches exactly the original definition of flux",
},
{
name: "react",
description:
"Has code or documentation that specifically helps to integrate with React",
},
{
name: "redux",
description: "A Redux plugin",
},
{
name: "mobx",
description: "A MobX plugin.",
},
],
projects: [
{ url: "https://github.com/bcherny/undux" },
{ url: "https://github.com/mweststrate/immer" },
{ url: "https://github.com/cerebral/cerebral" },
{ url: "https://github.com/jumpsuit/jumpstate" },
{
url: "https://github.com/dvajs/dva",
packagePaths: ["package.json", "packages/dva-core/package.json"],
},
{ url: "https://github.com/keajs/kea" },
{ url: "https://github.com/Olical/EventEmitter" },
{ url: "https://github.com/jeromeetienne/microevent.js" },
{ url: "https://github.com/mroderick/PubSubJS" },
{ url: "https://github.com/solkimicreb/react-easy-state", tags: ["react"] },
{ url: "https://github.com/facebook/flux", tags: ["pure flux"] },
{ url: "https://github.com/goatslacker/alt", tags: ["pure flux"] },
{ url: "https://github.com/optimizely/nuclear-js", tags: ["pure flux"] },
{ url: "https://github.com/yahoo/fluxible", tags: ["pure flux"] },
{ url: "https://github.com/acdlite/flummox", tags: ["pure flux"] },
{ url: "https://github.com/mobxjs/mobx", tags: ["react", "mobx"] },
{
url: "https://github.com/mobxjs/mobx-state-tree",
tags: ["react", "mobx"],
},
{ url: "https://github.com/reduxjs/redux", tags: ["react", "redux"] },
{
url: "https://github.com/redux-saga/redux-saga",
tags: ["react", "redux"],
},
{ url: "https://github.com/reduxjs/react-redux", tags: ["react", "redux"] },
{
url: "https://github.com/tommikaikkonen/redux-orm",
tags: ["react", "redux"],
},
{ url: "https://github.com/vuejs/vuex", tags: ["vue"] },
{ url: "https://github.com/cerebral/cerebral" },
{
url: "https://github.com/robinvdvleuten/vuex-persistedstate",
tags: ["vue"],
},
{ url: "https://github.com/moreartyjs/moreartyjs", tags: ["react"] },
{ url: "https://github.com/jamiebuilds/unstated", tags: ["react"] },
],
};