1.3.0 • Published 6 years ago

wrap-royale-core v1.3.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

Wrap Royale Core

Discord Server npm version Travis GitHub license

Wrap royale core is a promise based, minimalist wrapper for the official Clash Royale REST API. It covers all endpoints and parameters, but it barely offers any utility methods. If you are looking for a more feature rich library to interact with the Clash Royale API, take a look at wrap-royale which utilizes this library.

Official Clash Royale API documentation: https://developer.clashroyale.com

Features

  • Lightweight, promise based wrapper functions for API requests.
  • Types for all returned JSON data, which makes working with it very handy due to intellisense (see: https://i.imgur.com/xzP1AHC.png).
  • Normalizes player tags, no matter if you pass #2OPP, 20pp or #20pp the request will succeed.
  • Failed requests (wrong https status code in response or timeout exceeded) throw an exception
  • All API endpoints and parameters are covered.

Getting started

Prerequisites

Installation

$ npm install --save wrap-royale-core

Note: Typescript definitions are included, there is no need for installing types from the Definetely Typed Repo.

Basic usage

Typescript (2.0+):

import { CRApi, IApiCards } from 'wrap-royale-core';

const baseUri: string = 'https://api.clashroyale.com/v1';
const apiToken: string = 'my-long-jwt';
const api: CRApi = new CRApi(baseUri, apiToken);

async function getAllCards(): Promise<void> {
  try {
    const cards: IApiCards = await api.cards();
    console.log(cards);
  } catch (e) {
    console.log(e);
  }
}

getAllCards();

Javascript (ES6+):

const CRApi = require('wrap-royale-core').CRApi;

const baseUri = 'https://api.clashroyale.com/v1';
const apiToken = 'my-long-jwt';
const api = new CRApi(baseUri, apiToken);

api.cards()
  .then((cards) => {
    console.log(cards);
  })
  .catch((err) => {
    console.log(err);
  })

Class CRApi

The class CRApi offers all available endpoints as promise based functions. Each function returns a Promise which resolves to the json response from the API. If the HTTPS response code is not 2xx (for instance 503 which is being used for API maintenance) an exception will be thrown.

Instantion

When creating a CRApi instance you can pass the following options:

/**
 * Initialize all settings.
 * @param uri Base url to Clash Royale API e.g. 'https://api.clashroyale.com/v1/'.
 * @param token Your API token (JWT as string).
 * @param options Additional options for this wrapper.
 */
constructor(uri: string, token: string, options?: IApiOptions);

interface IApiOptions {
    /**
     * Timeout for awaiting a response until it fails. Defaults to 6000 milliseconds.
     */
    timeoutMS?: number;
}

Available endpoints

Below you'll find a summary of all available methods. For more details about the parameters or method, take a look at the code which comes along with function documentation.

RouteReturns
cards()Promise\
locations(limit?: number, after?: string, before?: string)Promise\
locationById(locationId: number)Promise\
clanWarLeaderboard(locationId: string, limit?: number, after?: string, before?: string)Promise\
playerLeaderboard(locationId: string, limit?: number, after?: string, before?: string)Promise\
clanLeaderboard(locationId: string, limit?: number, after?: string, before?: string)Promise\
playerProfile(playerTag: string)Promise\
playersUpcomingChests(playerTag: string)Promise\
playersBattleLogs(playerTag: string)Promise\<IApiPlayersBattleLogs[]>
clanProfile(clanTag: string)Promise\
currentClanWarInfo(clanTag: string)Promise\
clanWarLog(clanTag: string, locationId: string, limit?: number, after?: string, before?: string)Promise\
1.3.0

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago