battlenet-wow-api
v0.1.1
Published
A Node.js library for the BattleNet Community World of Warcraft API.
Downloads
11
Maintainers
Readme
BattleNet World of Warcraft Community API Client
Install
npm i --save battlenet-wow-api
Usage
const WoWClient = require('battlenet-wow-api')
// Initialize the client with your application's client ID and Secret. See https://develop.battle.net/access/clients
const client = new WoWClient(id, secret)
// Get realm status list
client.realmStatus()
.then(console.log)