1.0.0 ā€¢ Published 2 years ago

threenom v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 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

2 years ago