1.0.0 • Published 3 years ago

threenom v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

threenom

🌐 Check for free (and paid) domains on Freenom

Installation

$ npm i threenom

Usage

// Checks only for free domains
const threenom = require("threenom");

async function test() {
  let test = await threenom("test");
  console.log(test);
}

test();

With options

const threenom = require("threenom");

async function test() {
  let test = await threenom("test", {
    freeDomains: true,
    paidDomains: true,
  });
  console.log(test);
}

test();
1.0.0

3 years ago