pterodactyl.js
TypeScript icon, indicating that this package has built-in type declarations

2.1.1 • Public • Published

Pterodactyl.js

Pterodactyl.js is currently a node.js only wrapper which interfaces with the Client and Admin API on the Pterodactyl Panel. It is a fully object-oriented library which utilizes almost all functions within the API routes. The functions put forth allow for individual fields to be edited as well as all at once. This permits for creating, reading, updating and deleting for any resource in the Admin API. This library is also written in TypeScript with a comprehensive type declaration along with it.

Pterodactyl.js uses promises for handling of the data that is provided along with update functions.

Installation

To install pterodactyl.js, you must either use NPM or Yarn.

NPM

npm i pterodactyl.js

Yarn

yarn add pterodactyl.js

Basic Usage

Admin API

const Pterodactyl = require('pterodactyl.js');
 
const client = new Pterodactyl.Builder()
    .setURL('https://pterodactyl.app/')
    .setAPIKey('API Key')
    .asAdmin();
 
client.getServers()
.then(async servers => {
    let server = servers[0];
 
    console.log(server.toJSON());
}).catch(error => console.log(error));

User API

const Pterodactyl = require('pterodactyl.js');
 
const client = new Pterodactyl.Builder()
    .setURL('https://pterodactyl.app/')
    .setAPIKey('API Key')
    .asUser();
 
client.getClientServers()
.then(async servers => {
    let server = servers[0];
 
    console.log(server.toJSON());
 
    await server.start();
 
    await server.sendCommand('help');
}).catch(error => console.log(error));

Examples

Linking System

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i pterodactyl.js

    Weekly Downloads

    104

    Version

    2.1.1

    License

    MIT

    Unpacked Size

    145 kB

    Total Files

    45

    Last publish

    Collaborators

    • redstonegamez