Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Planeshifter/6e598e73635a6ea5e97599b7a1b1ce9b to your computer and use it in GitHub Desktop.
Save Planeshifter/6e598e73635a6ea5e97599b7a1b1ce9b to your computer and use it in GitHub Desktop.
scraper.js
var request = require('request');
var $ = require('cheerio');
var url = 'http://games.espn.com/fba/scoreboard?leagueId=21154&scoringPeriodId=161';
request(url, function(err, resp, body){
console.log( body )
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment