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 🙏

© 2026 – Pkg Stats / Ryan Hefner

npm-look

v1.0.2

Published

npm name availability at a glance for packages accounts and scopes

Readme

npm-look

NPM name availability at a glance for packages, accounts, and scopes

npm npm downloads License

Overview

npm-look is a lightweight utility to quickly check the availability of npm package names and usernames. It supports both CLI usage and programmatic API access. It also checks for potential conflicts with similar names by generating common variants of the input names.

Why npm-look?

  • 10x faster than npm-name
  • Checks both packages and usernames
  • Detects naming conflicts and variants
  • Works for scoped packages (@scope/name)

Installation

npm install -g npm-look
# or
npm install npm-look

CLI Usage

npx npm-look [--package] <name>   Check npm package name availability
npx npm-look --user <username>    Check npm username availability

Options

| Option | Description | | --------------- | ----------------------- | | -p, --package | Check npm package names | | -u, --user | Check npm usernames | | -h, --help | Show help message | | -v, --version | Show version number |

Examples

# Check multiple packages
npx npm-look react vue vite

# Check scoped packages
npx npm-look @react/core

# Explicit flags
npx npm-look --package react vue vite @react/core
npx npm-look --user tj npm npmjs react

# Mixed usage
npx npm-look react vite -p git django --user npm js -p vue next -u express

Programmatic API

You can also use npm-look in your Node.js scripts or projects.

import { packageLook, userLook } from 'npm-look';

// Check package names
await packageLook(['react', 'vue', '@react/core']);

// Check usernames
await userLook(['tj', 'npm', 'express']);

Functions

packageLook(name: string | string[])

Check npm package name availability and potential conflicts.

  • Parameters

    • name: A string or an array of package names.
  • Behavior

    • Fetches data from https://registry.npmjs.org/.
    • Checks availability and logs conflicts using common variants (-, _, .).
  • Example

    await packageLook('my-awesome-package');

userLook(username: string | string[])

Check npm username availability.

  • Parameters

    • username: A string or an array of usernames.
  • Behavior

    • Fetches data from https://www.npmjs.com/~.
    • Validates username format (lowercase letters, numbers, dashes only).
    • Logs whether the username is available or taken.
  • Example

    await userLook(['tj', 'npm', 'express']);

Variant Checks

npm-look generates common variants of package names to detect potential conflicts:

  • Replaces - with _ or . and vice versa.

  • Removes characters for alternative naming checks.

  • Example:

    import { variantsLook } from 'npm-look';
    
    variantsLook('my-package');
    // Output: ['mypackage', 'my_package', 'my.package', ...]

This ensures you can detect similar or conflicting package names before publishing.

License

Released under the Apache License 2.0.