iron_node_helper
v0.9.0
Published
helper library for loading in variables unique to the IronWorker environment
Downloads
3
Readme
A helper library for node IronWorker scripts to make quick use of resources provided in the IronWorker environment payload, config, and task_id
how to use
var worker = require('node_helper');
console.log("params:", worker.params);
// you can also access the following
console.log("config:", worker.config);
console.log("task_id:", worker.task_id);