A Node.js client for interacting with the UltraDNS API.
npm install ultradns-node
First, import the module:
const UltraApi = require('ultradns-node');
Then, create a new instance with your username and password:
const client = await UltraApi.connect('your-username', 'your-password');
You can then use the client to make requests to the UltraDNS API.
client.get('/path/to/resource').then(response => {
console.log(response);
});
To enable debug mode and get more detailed logs:
client.toggleDebug();
client.setUserAgent('Your Custom User Agent String');
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.