只要安装了组件,Noflo 似乎就能神奇地找到组件。例如,这个:
# Read a file
'package.json' -> IN Read(ReadFile)
# Split the file contents by newlines
Read() OUT -> IN Split(SplitStr)
# Count the packets
Split() OUT -> IN Count(Counter)
# Send the total count to display
Count() COUNT -> IN Display(Output)
# Display also file read errors
Read() ERROR -> IN Display()
有命名空间的概念吗?
这不会为我运行,最初是因为我没有安装strings包并且它找不到SplitStr组件。
我怎么知道这是我丢失的包裹?
现在它不起作用,因为它不知道Counter组件。一般来说,我怎样才能确定每个组件需要哪个包?