Skip to content

1.3.0

Latest
Compare
Choose a tag to compare
@bergie bergie released this 23 Nov 14:46
· 150 commits to master since this release
  • NoFlo createNetwork and asCallback now accept a flowtrace option to pass a Flowtrace instance for retroactive debugging. Example:
const { Flowtrace } = require('flowtrace');
const tracer = new Flowtrace();
noflo.createNetwork(myGraph, {
  flowtrace: tracer,
}, (err, network) => {
  // ... console.log(tracer.toJSON());
});
  • NoFlo createNetwork now accepts componentLoader and baseDir via options. Passing them via Graph properties is deprecated
  • NoFlo createNetwork now defaults to the non-legacy "network drives graph" mode
  • NoFlo createNetwork now only supports the graph, options, callback signature, no options given in some other order
  • noflo.Network interface has been removed. Use createNetwork to instantiate networks
  • CoffeeScript is no longer bundled with NoFlo. Install the CoffeeScript compiler in your project if you need to be able to load CoffeeScript components