Skip to content

Instantly share code, notes, and snippets.

View miguelvps's full-sized avatar

Miguel Serrano miguelvps

  • Lisbon, Portugal
View GitHub Profile
var CrowdProcess = require('crowdprocess');
var crp = new CrowdProcess('email@example.com', 'password');
// Run must be a function or a string containing valid Javascript code
// data must be a readable stream or an array
crp.map(data, Run, onResult);
function onResult (err, result) {
console.log(result);
}