lulz 1.0.2 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +242 -140
- package/TODO.md +132 -0
- package/examples.js +169 -197
- package/index.js +164 -14
- package/package.json +16 -17
- package/src/flow.js +362 -215
- package/src/red-lib.js +595 -0
- package/src/rx-lib.js +679 -0
- package/src/utils.js +270 -0
- package/src/workers.js +367 -0
- package/test.js +505 -279
- package/src/nodes.js +0 -520
package/package.json
CHANGED
|
@@ -1,33 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lulz",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "A reactive dataflow system
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "A reactive dataflow system that makes coders happy",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./index.js",
|
|
9
|
+
"./red": "./src/red-lib.js",
|
|
10
|
+
"./rx": "./src/rx-lib.js",
|
|
11
|
+
"./workers": "./src/workers.js"
|
|
12
|
+
},
|
|
7
13
|
"scripts": {
|
|
8
|
-
"test": "node
|
|
9
|
-
"
|
|
10
|
-
"
|
|
14
|
+
"test": "node test.js",
|
|
15
|
+
"examples": "node examples.js",
|
|
16
|
+
"save": "git add .; git commit -m 'Updated Release'; npm version patch; npm publish; git push --follow-tags;"
|
|
11
17
|
},
|
|
12
18
|
"keywords": [
|
|
13
19
|
"dataflow",
|
|
14
20
|
"reactive",
|
|
15
21
|
"flow",
|
|
16
22
|
"pipeline",
|
|
17
|
-
"node-red"
|
|
23
|
+
"node-red",
|
|
24
|
+
"rxjs"
|
|
18
25
|
],
|
|
19
|
-
"author": "catpea (https://github.com/catpea)",
|
|
20
|
-
"license": "MIT",
|
|
21
26
|
"repository": {
|
|
22
27
|
"type": "git",
|
|
23
|
-
"url": "
|
|
24
|
-
},
|
|
25
|
-
"bugs": {
|
|
26
|
-
"url": "https://github.com/catpea/lulz/issues"
|
|
28
|
+
"url": "https://github.com/catpea/lulz"
|
|
27
29
|
},
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"type": "github",
|
|
31
|
-
"url": "https://github.com/sponsors/catpea"
|
|
32
|
-
}
|
|
30
|
+
"author": "catpea",
|
|
31
|
+
"license": "MIT"
|
|
33
32
|
}
|