1.0.0 • Published 5 years ago

resellerclub v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

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

license

MIT