rio-wrapper
v1.0.0
Published
Raider.io API wrapper.
Downloads
5
Readme
JS Wrapper for Raider.io
npm install rio-wrapperUsage:
const RaiderIO = require('rio-wrapper')
const client = new RaiderIO()
// using promises
client.getWeeklyAffixes().then(console.log)
// async/await
async function Something() {
let affixes = null
try {
affixes = await client.getWeeklyAffixes()
} catch (e) {
// something
}
}More endpoint coverage in the future.
