my-pterodactyl

0.0.2 • Public • Published

My Pterodactyl API Wrapper

GitHub license GitHub stars GitHub issues

A powerful and easy-to-use API wrapper for Pterodactyl's API, providing a seamless integration of server management and user administration functionalities.

Features

  • User Management: Effortlessly manage users with create, update, delete, and retrieval capabilities.
  • Server Manipulation: Control servers with options for creation, suspension, reinstallation, and more.
  • File Operations: Manage files and directories on servers, including read, write, and folder creation.
  • Server Information: Retrieve detailed information about servers and users.
  • Discord Support: Need help or have questions? Join our Discord server for support and discussions.

Installation

npm install my-pterodactyl

Usage

const PteroManager = require('my-pterodactyl');

// Initialize the wrapper
const ptero = new PteroManager('your-api-key', 'https://your-ptero-instance.com');

// Example usage
(async () => {
  const newUser = await ptero.createUser({
    username: 'newuser',
    email: 'newuser@example.com',
    password: 'securepassword'
  });

  const newServer = await ptero.createServer({
    name: 'My New Server',
    user: newUser.id,
    // ... other server properties
  });

  // ... more examples of wrapper functions
})();

Documentation

Check out the full documentation for detailed usage examples.

Support

Join our Discord server for support and discussions.

Readme

Keywords

Package Sidebar

Install

npm i my-pterodactyl

Weekly Downloads

1

Version

0.0.2

License

ISC

Unpacked Size

17.2 kB

Total Files

35

Last publish

Collaborators

  • not.seven