# Quick Start


WARNING

This guide assumes that you know how to create API Keys on Pterodactyl


You can create the Nodeactyl instance by using the respective code below:

// Client

const Nodeactyl = require('nodeactyl');
const client = new Nodeactyl.NodeactylClient("https://your.panel.net", "YourClientAPIKey");


// Application

const Nodeactyl = require('nodeactyl');
const application = new Nodeactyl.NodeactylApplication("https://your.panel.net", "YourApplicationAPIKey");
1
2
3
4
5
6
7
8
9
10

Once you have created the nodeactyl instance, you can call any client / application function respectively. These are all listed in the API Reference

Last Updated: 9/5/2021, 2:10:36 PM