Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 2.1 KB

README.md

File metadata and controls

43 lines (32 loc) · 2.1 KB
Brawl Stars

A light-weight module that makes Brawl Stars API become easy.

Coverage Status

Install size Current version

Introduction

Provides an easy way to get started with the Brawl Stars API For more information about the responses please check Official Brawl Stars Dev Website. Not releated to Supercell. Created By: Philippe Smeets

Installation

npm install brawl-stars-node

Links

Example

const client = require('brawl-stars-node');
async function myFunction() {
    await client.login('YOUR-TOKEN-HERE');
    const player = await client.getPlayer('PLAYER-TAG-HERE');
    console.log(`${player.name} (${player.tag})`);
}
myFunction();

Disclaimer

This content is not affiliated with, endorsed, sponsored, or specifically approved by Supercell and Supercell is not responsible for it. For more information see Supercell's Fan Content Policy: <www.supercell.com/en/fan-content-policy/>