fpl-fetch
Version:
Wrapper for the Fantasy Premier League API
19 lines (12 loc) • 509 B
Markdown
# fpl-fetch · [](https://github.com/pmc-a/fpl-fetch/blob/main/LICENSE.md) · 
Wrapper for the Fantasy Premier League API written in TypeScript.
## Installation
```bash
npm install fpl-fetch
```
## Basic Usage
```typescript
import FplFetch from 'fpl-fetch';
const client = new FplFetch();
const player = client.getPlayer(328);
```