rawg-api-sdk
v0.0.3
Published
[API Docs](https://api.rawg.io/docs/)
Downloads
3
Readme
RAWG JS API SDK
Only listing of games endpoint implemented yet
Usage
import { RawgClient } from 'rawg-api-sdk';
const client = new RawgClient('<YOUR API KEY>');
const games = await client.games.list();
Or
import { RawgGamesClient } from 'rawg-api-sdk';
const gamesClient = new RawgGamesClient('<YOUR API KEY>');
const games = await gamesClient.list();