NodeJS PlanetHoster API integration.
Please refer to the documentation of the PlanetHoster API for all endpoints details.
npm install @planethoster-oss/api
const PhNodeApi = require("@planethoster-oss/api");
async function testConnection(api) {
try {
console.log(await api.testConnection());
} catch (e) {
console.log(e);
}
}
const api = new PhNodeApi({
api_key: "API_KEY",
api_user: "API_USER",
});
testConnection(api);