0.9.0 • Published 9 years ago

iron_node_helper v0.9.0

Weekly downloads
4
License
-
Repository
github
Last release
9 years ago

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);