Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 856 Bytes

README.md

File metadata and controls

41 lines (27 loc) · 856 Bytes

PteroLink

A Node.js library for interacting with the Pterodactyl Panel API.

Installation

# still in development lol

Getting Started

Communicating with the Application API

const { ApplicationClient } = require("pterolink");

const client = new ApplicationClient({
  url: "https://your-pterodactyl-panel.com",
  apiKey: "your-api-key", // Application API Key (from Admin Control Panel)
});

Communicating with the Client API

const { UserClient } = require("pterolink");

const client = new UserClient({
  url: "https://your-pterodactyl-panel.com",
  apiKey: "your-api-key", // User-Specific API Key
});

Contributing

If you want to contribute to this project, please feel free to submit a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.