1.0.2 • Published 2 years ago

ultradns-node v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

ultradns-node

A Node.js client for interacting with the UltraDNS API.

Installation

npm install ultradns-node

Usage

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.

Making GET Requests

client.get('/path/to/resource').then(response => {
    console.log(response);
});

Debug Mode

To enable debug mode and get more detailed logs:

client.toggleDebug();

Setting a Custom User Agent

client.setUserAgent('Your Custom User Agent String');

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago