1.0.0 • Published 11 months ago

today-in-wow.js v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

Available Functions

getDungeonsAndRaids (Promise)

const todayInWow = require("today-in-wow.js");

calendar.getDungeonsAndRaids([locale]).then(result => {
  //Result: Array Of All Dungeons And Raids Info
})
ParameterTypeDescriptionPossible Values
localestringOptional (Default: en). The language you wish the results to be in.de, es, fr, it, pt, ru, ko, cn

getEventsAndRares (Promise)

const todayInWow = require("today-in-wow.js");

calendar.getEventsAndRares([locale]).then(result => {
  //Result: Array Of All Events And Rares Info
})
ParameterTypeDescriptionPossible Values
localestringOptional (Default: en). The language you wish the results to be in.de, es, fr, it, pt, ru, ko, cn

getQuests (Promise)

const todayInWow = require("today-in-wow.js");

calendar.getQuests([locale]).then(result => {
  //Result: Array Of All Quests Info
})
ParameterTypeDescriptionPossible Values
localestringOptional (Default: en). The language you wish the results to be in.de, es, fr, it, pt, ru, ko, cn

getEconomy (Promise)

const todayInWow = require("today-in-wow.js");

calendar.getEconomy([locale]).then(result => {
  //Result: Array Of All Economy Info
})
ParameterTypeDescriptionPossible Values
localestringOptional (Default: en). The language you wish the results to be in.de, es, fr, it, pt, ru, ko, cn

getDragonflight (Promise)

const todayInWow = require("today-in-wow.js");

calendar.getDragonflight([locale]).then(result => {
  //Result: Array Of All Dragonflight Info
})
ParameterTypeDescriptionPossible Values
localestringOptional (Default: en). The language you wish the results to be in.de, es, fr, it, pt, ru, ko, cn

getShadowlands (Promise)

const todayInWow = require("today-in-wow.js");

calendar.getShadowlands([locale]).then(result => {
  //Result: Array Of All Shadowlands Info
})
ParameterTypeDescriptionPossible Values
localestringOptional (Default: en). The language you wish the results to be in.de, es, fr, it, pt, ru, ko, cn

getBFA (Promise)

const todayInWow = require("today-in-wow.js");

calendar.getBFA([locale]).then(result => {
  //Result: Array Of All BFA Info
})
ParameterTypeDescriptionPossible Values
localestringOptional (Default: en). The language you wish the results to be in.de, es, fr, it, pt, ru, ko, cn

getLegion (Promise)

const todayInWow = require("today-in-wow.js");

calendar.getLegion([locale]).then(result => {
  //Result: Array Of All Legion Info
})
ParameterTypeDescriptionPossible Values
localestringOptional (Default: en). The language you wish the results to be in.de, es, fr, it, pt, ru, ko, cn

getWOD (Promise)

const todayInWow = require("today-in-wow.js");

calendar.getWOD([locale]).then(result => {
  //Result: Array Of All WOD Info
})
ParameterTypeDescriptionPossible Values
localestringOptional (Default: en). The language you wish the results to be in.de, es, fr, it, pt, ru, ko, cn

Help Wanted!

Feel free to submit pull requests that improve the README, functions, documentation and overall code quality!