wow-realm-status

2.0.1 • Public • Published

wow-realm-status

NPM Maintainability XO code style

Easily fetch info about the World of Warcraft realms.

Install

npm install wow-realm-status

Usage

const {fetchRealm} = require('wow-realm-status');

fetchRealm('us', 'ragnaros')
	.then(realm => console.log(realm));
//=> {
//  name: 'Ragnaros',
//  slug: 'ragnaros',
//  locale: 'es-MX',
//  timezone: 'CDT',
//  online: true,
//  type: 'normal',
//  population: 'full'
//}

fetchRealm(region, realm[, version="retail"])

Returns a JSON object containing the realm data.

region

Type: string

realm

Type: string

classic

Type: boolean
Default: "retail"

fetchRealms(region[, version])

Returns an array of JSON objects with the realms for that region.

region

Type: string

version

To specify the game version to fetch.

Type: string
Supported values: "retail", "classic", "bc"
Default: "retail"

Realm data

Each realm is represented as a JSON object with the following properties:

name

Type: string

slug

Type: string

locale

Type: string

Locale of the realm, formatted as a IETF BCP 47 language tag.

timezone

Type: string

online

Type: boolean

type

Type: string

Possible values are: normal, pvp, rp, rppvp.

population

Type: string

Current population of the realm.
Possible values are: very-low, low, medium, high, full

Contributing

Contributions are always welcome! Please run npm test before hand to ensure everything is ok.

Support

If you use this package please consider starring it :)

Related

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.1
    0
    • latest

Version History

Package Sidebar

Install

npm i wow-realm-status

Weekly Downloads

3

Version

2.0.1

License

MIT

Unpacked Size

6.11 kB

Total Files

7

Last publish

Collaborators

  • alvarocastro