0.0.2 • Published 2 years ago
my-pterodactyl v0.0.2
My Pterodactyl API Wrapper
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-pterodactylUsage
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.