Package Exports
- basketball-reference
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (basketball-reference) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
basketball-reference
Web scraper for basketball-reference.com. This scraper was built to provide a free alternative for collecting NBA data. Building a web scraper with node+cheerio is painful. But boy is it fast as fuck--not to mention asynchronous.
Installation
npm install basketball-reference --saveQuickstart
var scraper = require('basketball-reference');
scraper.getLeagueStandings(2013, function(data) {
console.log(data);
});