nba
Version:
JavaScript client for the NBA's stats API
15 lines (12 loc) • 439 B
JavaScript
const nba = require("./src");
const getJSON = require("./src/get-json");
const transport = (url, params, options) => {
const fixedURL = url.replace("stats.nba.com", "stats.wnba.com");
return getJSON(fixedURL, params, options);
};
const wnbaStats = nba.stats.withTransport(transport);
(async () => {
// player info for Jordin Canada
const result = await wnbaStats.playerInfo({ PlayerID: "1628886" });
console.log(result);
})();