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

domaingistry

v1.0.2

Published

A Simple Domain Name Generation Package and CLI

Downloads

4

Readme

DomainGistry - A Domain Name Generation CLI

DomainGistry is a domain name generation package and CLI.

It's still in the early stages, so we're very interested in bug reports, contributions and the like.

Requirements

  • nodejs
  • commander.js
  • chalk.js

Installation

Method 1

  • Using NPM
npm install domaingistry

Method 2

  • Download repository on github
  • Change into repository
  • Type the following to install
npm install 

Usage As A CLI

Local Usage As A CLI

nodejs domaingistry.js --help

Global Usage As A CLI

domaingistry --help

Generating Domain Names

  • Generate the domain name, shows you the common domain name generated, saves to a json file
domaingistry generate yourdomainname

or

domaingistry generate "yourdomainname"
Screenshot

Generating Domain Names By Category

  • [Common | Extra | New | Prefixed | Suffixed]
  • Generate the domain name per category and show it on the console

Get Common Domain Names[.com,.org]

domaingistry get-common "yourdomain name"

Get New Domain Names[.ai,.io]

domaingistry get-new "yourdomain name"

Get Extra Domain Names[.tv,.media]

domaingistry get-extra "yourdomain name"

Get Prefixed Domain Names[myexample.com,theexample.com]

domaingistry get-prefix "yourdomain name"

Get Suffixed Domain Names[exampleworld.com,examplify.com]

domaingistry get-suffix "yourdomain name"

Get Sub Domain Names[blog.example.com,support.example.com]

domaingistry get-subdomain "yourdomain name"

Get All Domain Names

domaingistry get-all "yourdomain name"

Usage As A Package

Example 1

const Domain = require('domaingistry');

var domain1 = new Domain('yourdomainname','common')

console.log(domain1.generate())
Example 2

const Domain = require('domaingistry');

var domain2 = new Domain();

domain2.name = 'example';

domain2.category = 'extra';

console.log(domain2.generate())

Generating Domain Names By Categories[common,new,extra,prefix,suffix,subdomain]


console.log(domain1.getCommon());

console.log(domain1.getNew());

console.log(domain1.getExtra());

console.log(domain1.getPrefix());

console.log(domain1.getSuffix());

console.log(domain1.getSubDomain());

Saving All Results of Categories to JSON

  • This creates a file with all the various categories of domain names generated in a json file

var Domain = require('domaingistry');

var domain = new Domain("example");

domain.to_json()

Author

  • Jesse E.Agbe(JCharis)
  • Jesus Saves@JCharisTech