Skip to content

Instantly share code, notes, and snippets.

@LAMike310
Created May 29, 2016 20:51
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 LAMike310/13aadc25882ef61f5d9531efe7cbb4a4 to your computer and use it in GitHub Desktop.
Save LAMike310/13aadc25882ef61f5d9531efe7cbb4a4 to your computer and use it in GitHub Desktop.
var axios = require('axios');
var cheerio = require('cheerio')
var url = ""
axios.get(url)
.then(function (response) {
var data = response.data;
var $ = cheerio.load(response.data);
$('').each(function(i, element) {
});
})
.catch(function (response) {
console.log(response);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment