Skip to content

Instantly share code, notes, and snippets.

@ravikp7
Created March 27, 2018 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ravikp7/d473a202356d5a0ab57db5c1276916d3 to your computer and use it in GitHub Desktop.
Save ravikp7/d473a202356d5a0ab57db5c1276916d3 to your computer and use it in GitHub Desktop.
beaglebone latest images fetch
var fs = require('fs')
var http = require('http')
var file = fs.createWriteStream("file.html");
var request = http.get("http://beagleboard.org/latest-images", function(response) {
response.pipe(file);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment