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-builder

v0.1.0

Published

Business-as-Code. Define your startup in minutes.

Readme

startup-builder

Business-as-Code. Define your startup in minutes.

Quick Start

npx startup-builder

Install

npm install startup-builder

What You Get

One command. Complete startup foundation.

startup-builder "AI code review for engineering teams"
✓ Foundation Sprint    Complete problem/solution definition
✓ Lean Canvas         One-page business model
✓ ICP                 Ideal customer profile
✓ Jobs-to-be-Done     Customer motivation map
✓ StoryBrand          Clear messaging framework
✓ Name                Startup name + domain
✓ Landing Page        Ready to deploy

CLI

# Full guided experience
startup-builder

# Start from idea
startup-builder "your startup idea"

# Run specific modules
startup-builder foundation   # Foundation sprint
startup-builder canvas       # Lean canvas
startup-builder icp          # Ideal customer profile
startup-builder jtbd         # Jobs to be done
startup-builder story        # StoryBrand messaging
startup-builder name         # Name generation
startup-builder landing      # Landing page

# Export everything
startup-builder export --format md
startup-builder export --format json

SDK

import { builder } from 'startup-builder'

// Build complete startup foundation
const startup = await builder.create({
  idea: 'AI code review for engineering teams',
  founder: {
    capabilities: ['ML expertise', 'DevTools experience'],
    insight: 'Code review is the biggest bottleneck',
    motivation: 'Hated waiting for reviews'
  }
})

// Returns complete startup package
// {
//   foundation: { problem, customer, solution, mvp, validation },
//   canvas: { ... 9 boxes ... },
//   icp: { firmographics, buyer, problems, goals, buying },
//   jtbd: { mainJob, relatedJobs, forces },
//   story: { character, problem, guide, plan, cta, failure, success },
//   name: { name, tagline, domain },
//   landing: { url, sections }
// }

// Build incrementally
const foundation = await builder.foundation('AI code review')
const canvas = await builder.canvas(foundation)
const icp = await builder.icp(foundation)
const story = await builder.story(foundation, icp)
const name = await builder.name(foundation)
const landing = await builder.landing(name, story)

The Flow

┌─────────────────────────────────────────────────────────────────────┐
│  1. FOUNDATION SPRINT                                               │
│     Problem → Customer → Solution → MVP → Validation                │
├─────────────────────────────────────────────────────────────────────┤
│  2. LEAN CANVAS                                                     │
│     Complete business model on one page                             │
├─────────────────────────────────────────────────────────────────────┤
│  3. IDEAL CUSTOMER PROFILE                                          │
│     Know exactly who you're building for                            │
├─────────────────────────────────────────────────────────────────────┤
│  4. JOBS TO BE DONE                                                 │
│     Understand why customers will buy                               │
├─────────────────────────────────────────────────────────────────────┤
│  5. STORYBRAND                                                      │
│     Clarify your message                                            │
├─────────────────────────────────────────────────────────────────────┤
│  6. NAME + DOMAIN                                                   │
│     Find the perfect name, claim the domain                         │
├─────────────────────────────────────────────────────────────────────┤
│  7. LANDING PAGE                                                    │
│     Deploy and start collecting signups                             │
└─────────────────────────────────────────────────────────────────────┘

Output

Everything syncs to your Startups.Studio dashboard and exports to code:

my-startup/
├── startup.mdx           # Complete startup definition
├── canvas.mdx            # Lean canvas
├── icp.mdx               # Ideal customer profile
├── messaging.mdx         # StoryBrand script
├── experiments.mdx       # Validation experiments
└── landing/              # Deployable landing page
    ├── index.html
    └── styles.css

Deploy

// Deploy everything
const deployed = await builder.deploy(startup, {
  domain: 'acme.hq.sb'  // Or your own domain
})

// {
//   landing: 'https://acme.hq.sb',
//   dashboard: 'https://startups.studio/acme'
// }

MCP Server

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

"Build a startup around AI code review" "Create a lean canvas for my idea" "What should my MVP look like?"

Includes

License

MIT