私は、最初のNode-RED コントリビューションを作成中です。このノードは、エディターで提供されるサンプル オブジェクトに基づいて着信オブジェクトを消去します。と を使用し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 の依存関係を配置することはわかっていますが、エディター/ライブラリーをリストする必要がありますか?