node-red 2.1.4 → 2.2.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/CHANGELOG.md +95 -2752
- package/LICENSE +1 -1
- package/README.md +8 -12
- package/package.json +7 -7
- package/settings.js +8 -0
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -2,12 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
http://nodered.org
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
[](https://coveralls.io/r/node-red/node-red?branch=master)
|
|
5
|
+
Low-code programming for event-driven applications.
|
|
7
6
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-

|
|
7
|
+

|
|
11
8
|
|
|
12
9
|
## Quick Start
|
|
13
10
|
|
|
@@ -39,15 +36,14 @@ This project adheres to the [Contributor Covenant 1.4](http://contributor-covena
|
|
|
39
36
|
|
|
40
37
|
## Authors
|
|
41
38
|
|
|
42
|
-
Node-RED is a project of the [
|
|
43
|
-
|
|
44
|
-
It was created by [IBM Emerging Technology](https://www.ibm.com/blogs/emerging-technology/).
|
|
45
|
-
|
|
46
|
-
* Nick O'Leary [@knolleary](http://twitter.com/knolleary)
|
|
47
|
-
* Dave Conway-Jones [@ceejay](http://twitter.com/ceejay)
|
|
39
|
+
Node-RED is a project of the [OpenJS Foundation](http://openjsf.org).
|
|
48
40
|
|
|
41
|
+
It is maintained by:
|
|
49
42
|
|
|
43
|
+
* Nick O'Leary [@knolleary](http://twitter.com/knolleary)
|
|
44
|
+
* Dave Conway-Jones [@ceejay](http://twitter.com/ceejay)
|
|
45
|
+
* And many others...
|
|
50
46
|
|
|
51
47
|
## Copyright and license
|
|
52
48
|
|
|
53
|
-
Copyright
|
|
49
|
+
Copyright OpenJS Foundation and other contributors, https://openjsf.org under [the Apache 2.0 license](LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Low-code programming for event-driven applications",
|
|
5
5
|
"homepage": "http://nodered.org",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
"flow"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@node-red/editor-api": "2.
|
|
35
|
-
"@node-red/runtime": "2.
|
|
36
|
-
"@node-red/util": "2.
|
|
37
|
-
"@node-red/nodes": "2.
|
|
34
|
+
"@node-red/editor-api": "2.2.0",
|
|
35
|
+
"@node-red/runtime": "2.2.0",
|
|
36
|
+
"@node-red/util": "2.2.0",
|
|
37
|
+
"@node-red/nodes": "2.2.0",
|
|
38
38
|
"basic-auth": "2.0.1",
|
|
39
39
|
"bcryptjs": "2.4.3",
|
|
40
|
-
"express": "4.17.
|
|
40
|
+
"express": "4.17.2",
|
|
41
41
|
"fs-extra": "10.0.0",
|
|
42
|
-
"node-red-admin": "^2.2.
|
|
42
|
+
"node-red-admin": "^2.2.2",
|
|
43
43
|
"nopt": "5.0.0",
|
|
44
44
|
"semver": "7.3.5"
|
|
45
45
|
},
|
package/settings.js
CHANGED
|
@@ -328,6 +328,12 @@ module.exports = {
|
|
|
328
328
|
* a collection of themes to chose from.
|
|
329
329
|
*/
|
|
330
330
|
//theme: "",
|
|
331
|
+
|
|
332
|
+
/** To disable the 'Welcome to Node-RED' tour that is displayed the first
|
|
333
|
+
* time you access the editor for each release of Node-RED, set this to false
|
|
334
|
+
*/
|
|
335
|
+
//tours: false,
|
|
336
|
+
|
|
331
337
|
palette: {
|
|
332
338
|
/** The following property can be used to order the categories in the editor
|
|
333
339
|
* palette. If a node's category is not in the list, the category will get
|
|
@@ -336,6 +342,7 @@ module.exports = {
|
|
|
336
342
|
*/
|
|
337
343
|
//categories: ['subflows', 'common', 'function', 'network', 'sequence', 'parser', 'storage'],
|
|
338
344
|
},
|
|
345
|
+
|
|
339
346
|
projects: {
|
|
340
347
|
/** To enable the Projects feature, set this value to true */
|
|
341
348
|
enabled: false,
|
|
@@ -349,6 +356,7 @@ module.exports = {
|
|
|
349
356
|
mode: "manual"
|
|
350
357
|
}
|
|
351
358
|
},
|
|
359
|
+
|
|
352
360
|
codeEditor: {
|
|
353
361
|
/** Select the text editor component used by the editor.
|
|
354
362
|
* Defaults to "ace", but can be set to "ace" or "monaco"
|