A node module for sending stats for the (upcoming) BlueFox panel.
First install the module using yarn or npm
yarn add bluefox-info
# or
npm install bluefox-info
To send use the send method. It takes an array or string.
const bluefox = require('bluefox-info');
bluefox.send(['hello', 'world']);
To get use the get method. It returns an promise with an array. or string.
const bluefox = require('bluefox-info');
bluefox.get().then(result => {
console.log(result)
});