1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Updated API Reference (markdown)

Nick O'Leary 2013-09-09 12:23:14 -07:00
parent cf724e74a8
commit c7fdd06123

@ -124,3 +124,8 @@ nodes-started | Fired once the flow nodes have been created
nodes-stopping | Fired when the flow nodes are about to be stopped
nodes-stopped | Fired once the flow nodes have stopped
var events = require("../../red/red");
events.on("nodes-started",function() {
console.log("All nodes have started");
})