ESPN fantasy baseball wrapper
npm install espn-fantasy-baseball
``typescript
import { League } from 'espn-fantasy-baseball'
// Initialize League
const league = new League(
await league.init()
// Provides access to league based actions within this league
league.teams()
// Provides access to player based actions within this league
league.players()
// Get a list of slightly different league teams info
league.getLeagueTeams()
// Get a list of all league member info
league.getLeagueMembers()
// View all the matchups for that week
league.getWeeklyMatchups()
``
Authenticating for private leagues:
Inspired by: