/rawg-sdk

Primary LanguageTypeScriptGNU General Public License v3.0GPL-3.0

RAWG JS API SDK

API Docs

Get your key here

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();