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

startup-names

v0.1.6

Published

Name your startup. Own the brand.

Readme

startup-names

Name your startup. Own the brand.

Quick Start

npx startup-names "marketplace for freelance designers"
✓ Designly         designly.hq.sb (free)      designly.io ($29)
✓ CreativeHub      creativehub.hq.sb (free)   creativehub.co ($49)
✓ PixelMatch       pixelmatch.hq.sb (free)    pixelmatch.io ($29)
✓ Artisan          artisan.hq.sb (free)       artisan.design ($89)
✓ Briefcase        briefcase.hq.sb (free)     briefcase.io ($29)

Install

npm install startup-names

CLI

# Generate startup names
startup-names "marketplace for freelance designers"

# Industry-specific
startup-names "fintech for small business" --industry fintech
startup-names "AI for healthcare" --industry health

# Tone
startup-names "legal services" --tone professional
startup-names "pet products" --tone playful

# More options
startup-names "your idea" --count 20
startup-names "your idea" --style abstract

# Full branding
startup-names "your idea" --full  # Name + tagline + logo concept

SDK

import { startup } from 'startup-names'

// Generate names
const results = await startup.generate({
  description: 'marketplace for freelance designers',
  count: 10
})

// Generate with industry context
const results = await startup.generate({
  description: 'AI-powered legal document review',
  industry: 'legal',
  tone: 'professional',
  style: 'brandable'
})

// Full brand package
const brand = await startup.fullBrand({
  description: 'marketplace for designers',
  name: 'Designly'
})
// {
//   name: 'Designly',
//   tagline: 'Where design meets opportunity',
//   logoIdea: 'Abstract D with creative flourish',
//   colorPalette: ['#6366F1', '#F43F5E', '#FFFFFF'],
//   domains: { free: 'designly.hq.sb', paid: [...] }
// }

Naming Styles

Abstract

Invented, memorable: Figma, Notion, Slack

const names = await startup.generate({
  description: 'design collaboration',
  style: 'abstract'
})

Compound

Two concepts merged: Airbnb, YouTube, Facebook

const names = await startup.generate({
  description: 'home sharing',
  style: 'compound'
})

Evocative

Suggests the benefit: Zoom, Stripe, Calm

const names = await startup.generate({
  description: 'video conferencing',
  style: 'evocative'
})

Founder-style

Personal touch: Warby Parker, Ben & Jerry's

const names = await startup.generate({
  description: 'eyewear',
  style: 'founder',
  founderNames: ['Alice', 'Bob']
})

Industry Presets

// Fintech
const names = await startup.generate({
  description: 'payments for freelancers',
  industry: 'fintech'
})
// Prioritizes: trust, security, professionalism

// Health
const names = await startup.generate({
  description: 'mental health app',
  industry: 'health'
})
// Prioritizes: calm, care, wellness

// Developer tools
const names = await startup.generate({
  description: 'CI/CD platform',
  industry: 'devtools'
})
// Prioritizes: speed, reliability, technical

Brand Variations

// Check name across variations
const variations = await startup.variations('acme')
// {
//   exact: 'acme.com',
//   prefixed: ['getacme.com', 'useacme.com', 'tryacme.com'],
//   suffixed: ['acmehq.com', 'acmeapp.com', 'acmeio.com'],
//   free: ['acme.hq.sb', 'acme.io.sb']
// }

MCP Server

{
  "mcpServers": {
    "startup-names": {
      "command": "npx",
      "args": ["startup-names", "mcp"]
    }
  }
}

"Name my fintech startup" "Generate playful names for a pet subscription service" "Create a full brand for my marketplace idea"

Integration

import { startup } from 'startup-names'
import { domains } from 'builder.domains'
import { landing } from 'landing-page'

// Full startup launch
const brand = await startup.fullBrand({
  description: 'marketplace for designers'
})

await domains.claim(brand.domains.free)
const page = await landing.generate({
  product: brand.name,
  tagline: brand.tagline,
  colors: brand.colorPalette
})
await landing.deploy(page, { domain: brand.domains.free })

License

MIT