@roizor/hypixel-js
v1.1.1
Published
A simple NodeJS Hypixel public API wrapper.
Downloads
7
Readme
Hypixel-JS
A simple NodeJS Hypixel public API wrapper.
Example:
const HypixelJS = require('@roizor/hypixel-js');
const api = new HypixelJS('Your-Key-Here');
api.playerData('name', 'Roizor').then(function (data) {
console.log(data);
}).catch(function (err) {
console.log(err);
});