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

appelator

v1.0.4

Published

A quick and dirty CLI tool for finding available NPM package names

Downloads

12

Readme

🖋️ Appelator

A quick and dirty CLI tool for finding available NPM package names.

appellation
/ˌapəˈleɪʃ(ə)n

noun
    * a name or title
    * the action of giving a name to someone or something.

Setup

Install appelator as a global NPM CLI tool

λ npm i appelator -g

Find all taken and available NPM package names

λ appelator --find

Optionall save taken and available NPM package names to an external .json file

λ appelator --save [directory]

Search

Output a random available NPM package name

λ appelator --random
Found 1 available NPM package names:

graybeard

Output available NPM package names matching a query string

λ appelator --query dog
Found 10 available NPM package names:

bumblepuppy
puppy
puppydom
puppyfish
puppyfoot
puppyhood
puppyish
puppyism
puppylike
puppysnatch

Filtering

Use --limit to output a specific number of available NPM packages

λ appelator --query dog --limit 3
Found 3 available NPM package names:

albedograph
amidogen
amidoguaiacol

Use --exact to output only available NPM packages of a specific length

appelator --query puppy --exact 8
Found 3 available NPM package names:

puppydom
puppyish
puppyism

Use --min to output only available NPM packages of a specific length

λ appelator --query puppy --min 9
Found 6 available NPM package names:

bumblepuppy
puppyfish
puppyfoot
puppyhood
puppylike
puppysnatch

Use --max to output only available NPM packages of a specific length

λ appelator --query puppy --max 8
Found 4 available NPM package names:

puppy
puppydom
puppyish
puppyism

NOTE: --limit, --exact, --min, and --max can all be used with --random and ---queryuery

Help

λ appelator --help

  Usage: appelator [options]

  Options:

    -V, --version          output the version number
    -f --find              find available and taken npm package names
    -s --save [directory]  save available and taken npm package names to .json file in directory
    -r --random            get random available npm package name (note: use limit to get more than one)
    -q --query [query]     get available npm package name with matching query string
    -l --limit [limit]     limits number of available names to return
    -e --exact [exact]     get available names of an exact length -- overrides min or max
    -m --min [min]         get available names higher than or equal to a specific length
    -M --max [max]         get available names lower than or equal to a specific length
    -h, --help             output usage information