Skip to content

Commit ba00509

Browse files
committed
📚 more libraries
1 parent 2dc6a66 commit ba00509

File tree

4 files changed

+39
-5
lines changed

4 files changed

+39
-5
lines changed

data/source/react-components.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ module.exports = {
6161
* webpack config.
6262
*/
6363
projects: [
64+
{ url: "https://github.com/yjose/reactjs-popup" },
6465
{
6566
url: "https://github.com/MailOnline/libreact",
6667
tags: ["toolkit"],

data/source/react-starter-project-tags.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,4 +231,14 @@ module.exports = [
231231
description: "Blazing fast, zero configuration web application bundler",
232232
match: project => includesAny(project.dependencies, ["parcel-bundler"]),
233233
},
234+
{
235+
name: "electron",
236+
description: "Tool for building desktop apps.",
237+
match: project =>
238+
includesAny(project.dependencies, [
239+
"electron-packager",
240+
"electron",
241+
"electron-rebuild",
242+
]),
243+
},
234244
];

data/source/react-starter-projects.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ module.exports = {
2424
aka: ["react boilerplates", "react starters", "react seeds"],
2525
tags: starterProjectTags,
2626
projects: [
27+
{ url: "https://github.com/chentsulin/electron-react-boilerplate" },
2728
{
2829
url: "https://github.com/jaredpalmer/after.js",
2930
tags: ["dependency"],

data/source/state-managers.js

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,20 @@ module.exports = {
1313
description:
1414
"Has code or documentation that specifically helps to integrate with React",
1515
},
16+
{
17+
name: "redux",
18+
description: "A Redux plugin",
19+
},
20+
{
21+
name: "mobx",
22+
description: "A MobX plugin.",
23+
},
1624
],
1725
projects: [
26+
{ url: "https://github.com/cerebral/cerebral" },
27+
{ url: "https://github.com/jumpsuit/jumpstate" },
28+
{ url: "https://github.com/dvajs/dva" },
29+
{ url: "https://github.com/keajs/kea" },
1830
{ url: "https://github.com/Olical/EventEmitter" },
1931
{ url: "https://github.com/jeromeetienne/microevent.js" },
2032
{ url: "https://github.com/mroderick/PubSubJS" },
@@ -24,11 +36,21 @@ module.exports = {
2436
{ url: "https://github.com/optimizely/nuclear-js", tags: ["pure flux"] },
2537
{ url: "https://github.com/yahoo/fluxible", tags: ["pure flux"] },
2638
{ url: "https://github.com/acdlite/flummox", tags: ["pure flux"] },
27-
{ url: "https://github.com/mobxjs/mobx", tags: ["react"] },
28-
{ url: "https://github.com/reactjs/redux", tags: ["react"] },
29-
{ url: "https://github.com/redux-saga/redux-saga", tags: ["react"] },
30-
{ url: "https://github.com/reactjs/react-redux", tags: ["react"] },
31-
{ url: "https://github.com/tommikaikkonen/redux-orm", tags: ["react"] },
39+
{ url: "https://github.com/mobxjs/mobx", tags: ["react", "mobx"] },
40+
{
41+
url: "https://github.com/mobxjs/mobx-state-tree",
42+
tags: ["react", "mobx"],
43+
},
44+
{ url: "https://github.com/reactjs/redux", tags: ["react", "redux"] },
45+
{
46+
url: "https://github.com/redux-saga/redux-saga",
47+
tags: ["react", "redux"],
48+
},
49+
{ url: "https://github.com/reactjs/react-redux", tags: ["react", "redux"] },
50+
{
51+
url: "https://github.com/tommikaikkonen/redux-orm",
52+
tags: ["react", "redux"],
53+
},
3254
{ url: "https://github.com/vuejs/vuex", tags: ["vue"] },
3355
{ url: "https://github.com/cerebral/cerebral" },
3456
{

0 commit comments

Comments
 (0)