pterodactyl-client
v1.0.3
Published
Node.js Api wrapper for Pterodactyl.io
Downloads
8
Readme
Pterodactyl Client
Node.js Api wrapper for Pterodactyl.io
Made like the dashflo.net/docs/api/pterodactyl/v1/ documentation, use the body schemas and names of the endpoints.
Installation
Using NPM:
npm install pterodactyl-client
Usage
Import and initalize
import PterodactylClient from "pterodactyl-client";
const ptero = new PterodactylClient("host", "api key", "client key");
Getting all users
const users = await ptero.application.users.list();