我正在创建我的第一个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依赖项放在那里,但是我是否需要列出编辑器/库?
答案 0 :(得分:1)
你可能会在这里的邮件列表上更好地提出这样的问题:
https://groups.google.com/forum/#!forum/node-red
您不需要在依赖项中列出Node-RED,因为这只会将另一个副本提取到node_modules树中。
你应该没问题,只需使用对初始化节点时传入的 RED 对象的引用