I have my file reading in and being parsed properly but I can't seem to return the string of output. I would like to be able to access this string from a variable that it gets assigned to on the client. I'm using async series to help alleviate callback hell and the output hits the console fine. However if I drop return output in that same spot it doesn't work. Suggestions?
embed_analytics: function(){
var output;
async.series({
read_file: function(callback){
fs.readFile(__rootpath+'/apps/analytics/data/analytics.json', 'UTF-8', function(err,data){
if(err) {
console.error("Could not open file: %s", err);
process.exit(1);
}
try {
var config = JSON.parse(data);
callback(null, config);
}
catch(exception) {
console.error("There was an error parsing the json config file: ", exception);
process.exit(1);
}
});
}
},
function(err, results) {
_.each(results.read_file, function(element){
output+="$('"+element.Selector+"').click(function(){_gaq.push(['_trackEvent',"+element.Category+","+element.Action+","+element.Label+"]);});\n";
});
console.log(output);
}
);
}
callback hell. Never got into it either. You only get into it if you don't switch into an asynchronous state of mind and keep trying to program synchronously. – Juan Mendes Jun 9 '12 at 0:05