NodeJS/TypeScript Client Library for hosting.de API
npm install hostingde-api-js#### Supported API Services
- DNS (in process)
- Machine (planned)
- Database (planned)
- Domain (planned)
- SSL (not planned)
- E-Mail (not planned)
- Webhosting (not planned)
bash
npm i hostingde-api-js
`Usage
Import and initialize a client using an access token
`js
const { ClientDNS } = require("hostingde-api-js")// Initializing a client
let url = "https://secure.hosting.de/api",
token = "TOKEN",
limit = 10;
const client = new ClientDNS(url, token, limit)
``