Th3Shadowbroker / spigotmc.js

A wrapper for the Spigot API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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);
    });

About

A wrapper for the Spigot API

License:MIT License


Languages

Language:TypeScript 67.7%Language:JavaScript 32.3%