1.0.0 ⢠Published 4 years ago
threenom v1.0.0
threenom
š Check for free (and paid) domains on Freenom
Installation
$ npm i threenomUsage
// 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
4 years ago