resellerclub
v1.0.0
Published
NPM package for Resellerclub
Downloads
5
Maintainers
Readme
Resellerclub API for nodejs
A Resellerclub API helps to integrate domain avaliability search, domain registration and transfer.
Install
npm i resellerclub
example
const resellerclub = require("resellerclub");
resellerclub
.connect({
clientID: " YOUR CLIENT ID",
clientSecret: "YOUR CLIENT SECRET"
})
.then(res => console.log(res))
.catch(err => console.log(err));
// Check Domain Availability
resellerclub
.domainSearch({ domainname: "ENTER DOMAIN NAME", tlds: ["com", "net", "in"] })
.then(res => console.log(res))
.catch(err => console.log(err));
cli
- Install node.
- Run
npm i resellerclub
Author
- Amarnath TSR (https://www.amarnath.xyz)
license
MIT