JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q29946F
  • License GPL-3.0

js client for balldontlie api

Package Exports

  • @jharrilim/balldontlie-client

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 (@jharrilim/balldontlie-client) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

balldontlie-client

Build Status NPM Badge

Javascript client for Balldontlie. API Docs found here.

Rasheed Wallace - Ball Dont Lie

API Implementation Status

API Status
Players
Teams
Games 🚸
Stats
Season Averages

Install

npm i @jharrilim/balldontlie-client

Usage

import { BallDontLie } from '@jharrilim/balldontlie-client';

void async function main() {
    const v1Client = BallDontLie.v1();
    for await(let team of v1Client.teams()) {
        console.log(team.full_name);
    }

}().catch(console.error);