npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

domainbot

v1.0.0

Published

> Terminal based domain search and availability tool. Enter a word and automagically check availability of all related synonyms across .com, .net, .io and .xyz domains.

Downloads

4

Readme

Domain Name Suggestion and Availability

Terminal based domain search and availability tool. Enter a word and automagically check availability of all related synonyms across .com, .net, .io and .xyz domains.

Prerequisites

  • Node v8.9.0
  • NPM/Yarn

Features

  • Gets synonyms from thesaurus.com
  • Uses free proxies from gimmeproxy.com to reduce/remove WhoIs rate limits
  • Checks for availability across .com, .net, .io and .xyz
  • Terminal integration
  • Programmatic integration

Global Installation

Using NPM

$ npm install -g domainbot

Using Yarn

$ yarn global add domainbot

Synonyms Usage

Usage: domainbot search [options] <word>

Thesaurus synonyms domain search against all extensions

Options:

    -p, --proxy <boolean>      turn proxies on or off.                     [default: true]
    -P, --proxycount <number>  define the number of proxies to use         [default: 5]
    -w, --wait <number>        define the time to wait between calls (ms)  [default: 1300]
    -m, --mock                 mock run (dont call whois servers)          [default: false]
    -h, --help                 output usage information

Single Word Usage

Usage: domainbot check [options] <word>

Single word domain search against all extensions

Options:

    -p, --proxy <boolean>      turn proxies on or off.                     [default: true]
    -P, --proxycount <number>  define the number of proxies to use         [default: 5]
    -w, --wait <number>        define the time to wait between calls (ms)  [default: 1300]
    -m, --mock                 mock run (dont call whois servers)          [default: false]
    -h, --help                 output usage information
    

Global Installation

Using NPM

$ npm install domainbot --save

Using Yarn

$ yarn add domainbot

Synonyms Usage

var domainbot = require('domainbot');

// default options
const {available, unavailable, errors} = await domainbot.synonyms('robot');

// custom options
const {available, unavailable, errors} = await domainbot.synonyms('robot', {proxies: false});

Single Word Usage

var domainbot = require('domainbot');

// default options
const {available, unavailable, errors} = await domainbot.check('robot');

// custom options
const {available, unavailable, errors} = await domainbot.check('robot', {proxies: false});

Options

proxy

Type: boolean
Choices: true, false
Default: true

Perform whois checks behind a proxy. Proxies are fetched from the gimmeproxy.com free proxy api (daily limit max 240)

proxycount

Type: number
Default: '5'

Number of proxies to fetch and rotate for each whois call

wait

Type: number
Default: 1300

Wait in ms between each fresh whois check (new word, not new extension)

whois

Type: object

Optional options to pass to node-whois. Please check out the readme for more information on options available. Please note is you pass custom proxy details through this option the you will need disable proxy so that domainbot does not conflict.

Contributing

Contributions are welcome.

License

Domainbot is available under the BSD (2-Clause) License.