Node-Red Editor 和 Library 依赖项?
Node-Red Editor and Library dependencies?
我正在创建我的第一个 Node-RED contribution。该节点将根据编辑器中提供的样本对象清理传入对象。我正在使用 RED.editor
和 RED.library
.
我想知道是否需要在包文件中声明依赖项。目前看起来像这样:
{
"name" : "node-red-contrib-objectcleaner",
"version" : "0.0.1",
"description" : "Removes properties from incoming (payload) object, that are not in a template object",
"dependencies": { /*Do I need anything here? */
},
"keywords": [ "node-red", "validation", "flow" ],
"node-red" : {
"nodes": {
"objectcleaner": "objectcleaner/objectcleaner.js"
}
}
}
什么(如果有的话)进入依赖关系?我知道我会把 node.js 依赖项放在那里,但是我需要列出 editor/library 吗?
您最好在此处的邮件列表中提出这样的问题:
https://groups.google.com/forum/#!forum/node-red
您不需要在依赖项中列出 Node-RED,因为这只会将另一个副本拉入 node_modules 树。
你应该没问题,只需使用初始化节点时传入的对 RED 对象的引用
我正在创建我的第一个 Node-RED contribution。该节点将根据编辑器中提供的样本对象清理传入对象。我正在使用 RED.editor
和 RED.library
.
我想知道是否需要在包文件中声明依赖项。目前看起来像这样:
{
"name" : "node-red-contrib-objectcleaner",
"version" : "0.0.1",
"description" : "Removes properties from incoming (payload) object, that are not in a template object",
"dependencies": { /*Do I need anything here? */
},
"keywords": [ "node-red", "validation", "flow" ],
"node-red" : {
"nodes": {
"objectcleaner": "objectcleaner/objectcleaner.js"
}
}
}
什么(如果有的话)进入依赖关系?我知道我会把 node.js 依赖项放在那里,但是我需要列出 editor/library 吗?
您最好在此处的邮件列表中提出这样的问题:
https://groups.google.com/forum/#!forum/node-red
您不需要在依赖项中列出 Node-RED,因为这只会将另一个副本拉入 node_modules 树。
你应该没问题,只需使用初始化节点时传入的对 RED 对象的引用