npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

battlenet-api-wrapper-v2

v2.0.8

Published

A promised-based Node.js wrapper for the Battle.net Community and Data APIs (supports WoW, WoW Classic, SC2, D3, and Hearthstone).

Downloads

22

Readme

Battle.net API Wrapper

Greenkeeper badge

FORKED FROM https://github.com/QuadDamn/battlenet-api-wrapper The original code is not fully compatible with the new battle.net API, especially the WoW detail API (tbh, it's the only one I care about and maintain), that's why I'm adapting it because I need a wrapper and if I can't start empty, it's perfect !

WARNING : ONLY WOW RETAIL IS FULLY COMPATIBLE CUZ THE NEW VERSION OF BNET API

THE OTHER ENDPOINT MAYBE COMPATIBLE BUT NOT TESTED YET

A promised-based Node.js wrapper for the Battle.net Community and Data APIs (supports WoW, WoW Classic, SC2, D3, and Hearthstone).

NEW SINCE FORKED

  • getPlayableSpecializationMedia

COMPATIBILITY UPDATED SINCE FORKED

  • getAchievement
  • getBossMasterList
  • getBoss
  • getCharacterProfile

DEPRECATED SINCE FORKED

  • getChallengeModeRealmLeaderboard
  • getChallengeModeRegionLeaderboard

Installation

$ npm install --save battlenet-api-wrapper-v2

Prerequisites / General Information

  • To get your Client ID and Client Secret needed for this library, please refer to the steps in the Battle.net API Getting Started documentation.
  • Battle.net API Documentation Reference: https://develop.battle.net/documentation

Usage

The basic implementation of this library is as follows:

const battleNetWrapper = require('battlenet-api-wrapper');  
  
const clientId = 'YOUR_CLIENT_ID';  
const clientSecret = 'YOUR_CLIENT_SECRET';  
  
(async function() {  
   const bnw = new battleNetWrapper();  
   await bnw.init(clientId, clientSecret);
}());  

Once you have the battleNetWrapper class object instantiated, you then have access to all of the classes that exist under that umbrella. For each of the classes below, you will see a link to the full abstraction documentation. Each of functions are available on the respective class objects.

Having issues or have questions?

Post an issue and it will be responded to ASAP!

Want to contribute?

Feel free! Create a Pull Request and I'll review it ASAP!

License

Battle.net API Wrapper is released under the MIT License.