Node-RED should scan those directly which should be all you need for most cases....what/why are you pointing directly at ../../red/events ?
--
http://nodered.org
---
You received this message because you are subscribed to the Google Groups "Node-RED" group.
To unsubscribe from this group and stop receiving emails from it, send an email to node-red+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
As I said, you can access the internal events module as RED.events.
module.exports = function(RED) {
RED.events.on("nodes-started", function () {
// ...
});
}
What are you using this for? With the new deployment modes I wrote about on the list a couple weeks ago, the event doesn't get emitted unless a full deployment is done.
Nick