@th3shadowbroker/spigotmc.js

SpigotMC.js is an API wrapper for the XenforoResourceManageAPI. This project is fully open-source.

Usage no npm install needed!

<script type="module">
  import th3shadowbrokerSpigotmcJs from 'https://cdn.skypack.dev/@th3shadowbroker/spigotmc.js';
</script>

README

SpigotMC.js

SpigotMC.js is an API wrapper for the XenforoResourceManageAPI. This project is fully open-source.

Using SpigotMC.js in your project

npm install @th3shadowbroker/spigotmc.js or yarn add @th3shadowbroker/spigotmc.js

Dependencies

Axios: This library uses the popular Axios REST client to perform requests to the Spigot API.

Documentation

A full documentation can be found on GitHub Pages.

Usage

import { Spigot } from '@th3shadowbroker/spigotmc.js';

new Spigot().findAuthor("th3shadowbroker")
    .then(author => {
        if (author) {
            console.log(`The authors id is ${author.id}!`);
        } else {
            console.error("Author not found!");
        }
    })
    .catch(error => {
        console.error(error);
    });