1.0.1 • Published 4 years ago
yourcraft-api v1.0.1
YourCraft API wrapper
Example
const api = require("yourcraft-api")
// Get all players and their statistics
api.getPlayers((response) => {
console.log(response)
});
// Get player statistics
api.getPlayer('nickname', (response) => {
console.log(response)
});