initial support for npm module installation

This commit is contained in:
Hiroyasu Nishiyama
2021-01-11 19:32:16 +09:00
parent c40412d7c6
commit d51aefa156
6 changed files with 829 additions and 145 deletions

View File

@@ -212,12 +212,17 @@
"function": "Function",
"initialize": "Setup",
"finalize": "Close",
"outputs": "Outputs"
"outputs": "Outputs",
"require": "Require"
},
"text": {
"initialize": "// Code added here will be run once\n// whenever the node is deployed.\n",
"finalize": "// Code added here will be run when the\n// node is being stopped or re-deployed.\n"
},
"require": {
"var": "name",
"module": "module"
},
"error": {
"inputListener":"Cannot add listener to 'input' event within Function",
"non-message-returned":"Function tried to send a message of type __type__"