noflo プロジェクトを作成していますが、コンポーネント内でプロジェクトまたはグラフ ID を取得する必要があります
これは単純なコンポーネントコードです
noflo = require 'noflo'
exports.getComponent = ->
c = new noflo.Component
c.inPorts.add 'in', (event, payload) ->
return unless event is 'data'
# Do something with the packet, then
c.outPorts.out.send payload
c.outPorts.add 'out'
c
プロジェクトIDまたはそれを持つnofloクラスを持つイベントまたはnofloオブジェクトなので、それを含めます
ありがとう