1.0.1 • Published 4 years ago

cubecraft.js v1.0.1

Weekly downloads
4
License
Apache-2.0
Repository
github
Last release
4 years ago

cubecraft.js Codacy Badge

What is cubecraft.js

cubecraft.js is a JavaScript API for get data from CubeCraft.

How to install

Run : npm install --save github:Seyz123/cubecraft.js

Usage

You can see tests/index.js for an example.

Get SkyWars leaderboard by platform

const cc = require("cubecraft.js");

cc.getLeaderboardData("bedrock", "skywars").then(function(data){
	console.log(data);
}).catch(function(error){
	console.error(error);
});

Status

Work in progress...