hover-api-esm
v1.0.5
Published
Hover DNS API Client JS ESM
Downloads
6
Readme
hover-api-esm
JS ESM API Client for the un-official Hover DNS Api.
Inspiration drawn from:
Disclaimer
This is using native ESM modules without any transpiler or tool. This requires node 12.x
with the flag set via --experimental-modules
or node 13.x
+
Example Usage
const main = async () => {
await hover.login('username','password')
console.log(await hover.getDomains())
console.log(await hover.getRecords('domain'))
}
main()