An npm package that fetches the World of Warcraft ingame events from https://wowhead.com/today-in-wow using Axios & Cheerio.
Report a Bug | Request a New Feature | Help Develop This Project | Fund Me
Loved the project? Please consider giving a star :)
const todayInWow = require("today-in-wow.js");
calendar.getDungeonsAndRaids([locale]).then(result => {
//Result: Array Of All Dungeons And Raids Info
})
Parameter | Type | Description | Possible Values |
---|---|---|---|
locale |
string |
Optional (Default: en ). The language you wish the results to be in. |
de , es , fr , it , pt , ru , ko , cn |
const todayInWow = require("today-in-wow.js");
calendar.getEventsAndRares([locale]).then(result => {
//Result: Array Of All Events And Rares Info
})
Parameter | Type | Description | Possible Values |
---|---|---|---|
locale |
string |
Optional (Default: en ). The language you wish the results to be in. |
de , es , fr , it , pt , ru , ko , cn |
const todayInWow = require("today-in-wow.js");
calendar.getQuests([locale]).then(result => {
//Result: Array Of All Quests Info
})
Parameter | Type | Description | Possible Values |
---|---|---|---|
locale |
string |
Optional (Default: en ). The language you wish the results to be in. |
de , es , fr , it , pt , ru , ko , cn |
const todayInWow = require("today-in-wow.js");
calendar.getEconomy([locale]).then(result => {
//Result: Array Of All Economy Info
})
Parameter | Type | Description | Possible Values |
---|---|---|---|
locale |
string |
Optional (Default: en ). The language you wish the results to be in. |
de , es , fr , it , pt , ru , ko , cn |
const todayInWow = require("today-in-wow.js");
calendar.getDragonflight([locale]).then(result => {
//Result: Array Of All Dragonflight Info
})
Parameter | Type | Description | Possible Values |
---|---|---|---|
locale |
string |
Optional (Default: en ). The language you wish the results to be in. |
de , es , fr , it , pt , ru , ko , cn |
const todayInWow = require("today-in-wow.js");
calendar.getShadowlands([locale]).then(result => {
//Result: Array Of All Shadowlands Info
})
Parameter | Type | Description | Possible Values |
---|---|---|---|
locale |
string |
Optional (Default: en ). The language you wish the results to be in. |
de , es , fr , it , pt , ru , ko , cn |
const todayInWow = require("today-in-wow.js");
calendar.getBFA([locale]).then(result => {
//Result: Array Of All BFA Info
})
Parameter | Type | Description | Possible Values |
---|---|---|---|
locale |
string |
Optional (Default: en ). The language you wish the results to be in. |
de , es , fr , it , pt , ru , ko , cn |
const todayInWow = require("today-in-wow.js");
calendar.getLegion([locale]).then(result => {
//Result: Array Of All Legion Info
})
Parameter | Type | Description | Possible Values |
---|---|---|---|
locale |
string |
Optional (Default: en ). The language you wish the results to be in. |
de , es , fr , it , pt , ru , ko , cn |
const todayInWow = require("today-in-wow.js");
calendar.getWOD([locale]).then(result => {
//Result: Array Of All WOD Info
})
Parameter | Type | Description | Possible Values |
---|---|---|---|
locale |
string |
Optional (Default: en ). The language you wish the results to be in. |
de , es , fr , it , pt , ru , ko , cn |
Feel free to submit pull requests that improve the README, functions, documentation and overall code quality!