resellerclub

1.0.0 • Public • Published

Resellerclub API for nodejs

A Resellerclub API helps to integrate domain avaliability search, domain registration and transfer.

Buy Me A Coffee

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

Package Sidebar

Install

npm i resellerclub

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

4.21 kB

Total Files

4

Last publish

Collaborators

  • helloamarnath