Skip to content

Instantly share code, notes, and snippets.

@ondrek
Last active August 29, 2015 14:02
Show Gist options
  • Save ondrek/e5b834ec6fdacc04c363 to your computer and use it in GitHub Desktop.
Save ondrek/e5b834ec6fdacc04c363 to your computer and use it in GitHub Desktop.
node.js
var url = "http://s3.amazonaws.com/api.88x.us/dlQBxMbRwf6RBEcbQw_3pB-xw9Q/blogs";
var body = "";
require("http").get(url, function(res) {
res.on("data", function(chunk) { body += chunk; });
res.on("end", hotovoKonecne);
});
function hotovoKonecne(){
var tuMaBytArray = JSON.parse(body);
tuMaBytArray.push({"a":"b"})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment