@planethoster-oss/api
v1.1.0
Published
NodeJS PlanetHoster api integration
Readme
@planethoster-oss/api
NodeJS PlanetHoster API integration.
Please refer to the documentation of the PlanetHoster API for all endpoints details.
Installation
npm install @planethoster-oss/apiUsage
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);
