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

noderiowrapper

v1.1.1

Published

Node.js wrapper for the Raider.io API

Downloads

25

Readme

NodeRIO

A Node.JS RaiderIO Library To Retrieve and use data from the RaiderIO Api.

Installation

$ npm install --save noderiowrapper

Usage, retrieve gear, guild and MM+ score from current season

const noderiowrapper = require("noderiowrapper");

const nodeRIO = new noderiowrapper();

nodeRIO.Character.gear = true;
nodeRIO.Character.guild = true;
nodeRIO.Character.mythic_plus_scores_by_season = nodeRIO.Character._mythic_plus_scores_by_season_current;

nodeRIO.Character.getProfile("eu", "confrérie-du-thorium", "redwh").then((result) => {
    console.log(result);
});

:tada: NEW v1.1.1

  • Addition of automatic test for more reliability
  • Character Profile Raid Achievement Meta
  • Character Profile Raid Achievement Curve

Currently Supports

  • [x] Character Profile (With option)
  • [x] Character Profile Gear
  • [x] Character Profile Guild
  • [x] Character Profile Covenant
  • [x] Character Profile Raid Progression
  • [x] Character Profile Mythic+ Score for current season
  • [x] Character Profile Mythic+ Score by season
  • [x] Character Profile Mythic+ Rank
  • [x] Character Profile Mythic+ 10 Recent Runs (current season)
  • [x] Character Profile Mythic+ 10 Best Runs (current season)
  • [x] Character Profile Mythic+ All Best Runs (current season)
  • [x] Character Profile Mythic+ 10 Highest Runs (current season)
  • [x] Character Profile Mythic+ 10 Weekly Highest Runs
  • [x] Character Profile Mythic+ 10 Previous Week Highest Runs
  • [x] Character Profile Raid Achievement Meta
  • [x] Character Profile Raid Achievement Curve
  • [ ] Default Periods
  • [ ] Guild Boss Kill
  • [ ] Guild Profile
  • [x] Global Mythic+ Affixes
  • [ ] Global Mythic+ Leaderboard Capacity
  • [ ] Global Mythic+ Top Runs
  • [ ] Global Mythic+ Colors used for score tiers
  • [ ] Global Mythic+ Static Data
  • [ ] Global Raiding Boss Rankings
  • [ ] Global Raiding Hall of fame
  • [ ] Global Raiding Progression
  • [ ] Global Raiding Raid rankings
  • [ ] Global Raiding Static Data

Authors

Documentation (More details : https://raider.io/api)

Character

  • getProfile(region, realm, name): retrieve one or many information for player depending on the configuration of the object
  • getGear(region, realm, name): retrieve high level item information for player
  • getGuild(region, realm, name): retrieve basic information about guild the player is in
  • getCovenant(region, realm, name): retrieve the covenant and renown level of the player
  • getRaidProgression(region, realm, name): retrieve raid progression data for character
  • getCurrentMythicPlusScores(region, realm, name): retrieve scores for current mythic plus season.
  • getSeasonMythicPlusScores(region, realm, name, season): retrieve scores by mythic plus season. You can specify one or more season by appending multiple ':' values to this field. Note: Results are returned in an array that matches the order of the seasons in the request.
  • getCurrentMythicPlusRanks(region, realm, name): retrieve current season mythic plus rankings for player.
  • getMythicPlusRecentRuns(region, realm, name): retrieve ten most recent mythic plus runs for player (current season only).
  • getMythicBestRuns(region, realm, name): retrieve ten most high scoring mythic plus runs for player (current season only).
  • getAllMythicBestRuns(region, realm, name): retrieve most high scoring mythic plus runs for each keys for player (current season only).
  • getMythicPlusHighestRuns(region, realm, name): retrieve the player's ten highest Mythic+ runs by Mythic+ level (current season only)
  • getMythicPlusWeeklyHighestRuns(region, realm, name): retrieve the player's ten highest Mythic+ runs by Mythic+ level for the current raid week (current season only)
  • getMythicPlusPreviousWeekHighestRuns(region, realm, name): retrieve the player's ten highest Mythic+ runs by Mythic+ level for the previous raid week (current season only)

Default

Guild

Mythic Plus

  • getAffixes(region = "eu", locale = "fr"): Retrieve the affixes for a specific region, including the latest run seen with this affix

Raiding