Changelog
1.2.2 (September 17th 2020)
typescript
module to be installedgetLanguages
methodsetSource
now return the original untranspiled source code with getSource
also on Node.jsChangelog
1.2.1 (September 16th 2020)
Changelog
1.2.0 (August 28th 2020)
new noflo.Network
. Use noflo.createNetwork
instead, with the following options available:
subscribeGraph: true
: Uses LegacyNetwork
which modifies network topology based on changes in graph. This can cause some types of errors to be silent.subscribeGraph: false
: Uses Network
: network topology can be changed with network's methods (addNode
, removeEdge
, etc) and will be also written to the graph.
For backwards compatibility reasons, subscribeGraph
defaults to true
. Adapt your applications to use false
instead and start utilizing Network methods for any changes to a running graph.noflo.createNetwork(graph, options, callback)
signature, with backwards compatibility for the legacy noflo.createNetwork(graph, callback, options)
signaturenoflo.WirePattern
. WirePattern has been deprecated since 1.0, and all code using it should be migrated to the latest Process APIComponentName::icon = 'new-icon'
). Component icon and description should be set in class constructor or in getComponent
instead. Changing icon and description for a specific instance (process) is not affected and is fully supportednetworkCallback
option for noflo.asCallback
to provide access to the network instance for debugging purposesChangelog
1.1.2 (March 24th 2018)
Changelog
1.1.1 (February 19th 2018)
noflo.asComponent
handling of functions that return a NULL
Changelog
1.1.0 (February 19th 2018)
out
. Thrown errors get sent to error
out
, rejected promises to error
err
argument to callback gets sent to error
, result gets sent to out
Changelog
1.0.3 (November 24th 2017)
noflo.asCallback
. You can call this function now with either a component name, or a noflo.Graph
instanceChangelog
1.0.1 (November 13th 2017)
setSource
on Node.js no longer transpiles ES6 sources using Babel. All supported Node.js versions should run ES6 without issues