@di0ik/hypixel.js
v0.0.1-alpha.1
Published
A Hypixel.net API wrapper for Node.js
Readme
Hypixel.js
A Hypixel.net API wrapper for Node.js
Installation
npm install hypixel.jsUsage
const Hypixel = require('hypixel.js');
const client = new Hypixel.Client('API_KEY');
client
.getPlayer('name', 'uuid', 'player_id')
.then((player) => {
console.log(player);
})
.catch((err) => {
console.log(err);
});Documentation
...
