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

create-shuriken

v1.0.4

Published

Scaffold a new Shuriken Next.js project with a sharp TUI

Readme

create-shuriken

Scaffold a production-ready Shuriken project — split Next.js apps, auth, Prisma, and a clean UI — with an interactive terminal setup.

npm create shuriken@latest

Quick start

npm create shuriken@latest my-app
cd my-app
pnpm docker:dev
pnpm db:migrate && pnpm db:seed
mprocs
  • Main app: http://localhost:3000
  • Landing app: http://localhost:3001

What you get

Shuriken is a sharp, opinionated starter — not a library grab bag.

| | | |---|---| | Split architecture | Marketing site (landing/) + product app (root), deploy independently | | Auth | Custom sessions, login/signup UI, rate-limited API routes | | Database | PostgreSQL + Prisma, migrations, admin seed | | UI | Tailwind CSS 4, shadcn/ui, design tokens | | Tooling | Biome, Husky, SOPS-ready secrets, Docker Compose |

Learn more about the template itself in the Shuriken repo.

Requirements

  • Node.js 20+
  • pnpm
  • Docker (recommended for local Postgres + Redis)

Optional, for encrypted secrets during setup:

Usage

Interactive (recommended):

npm create shuriken@latest

Non-interactive:

npx create-shuriken my-app --yes

Skip dependency install (faster, install manually later):

npx create-shuriken my-app --yes --no-install

Options

| Flag | Description | |------|-------------| | --name <name> | npm package / project name | | --app-name <name> | Display name in the UI | | --main-port <port> | Main app port (default: 3000) | | --landing-port <port> | Landing app port (default: 3001) | | --github-repo <url> | GitHub link on the landing page | | --no-landing | Skip the landing app | | --no-docker | Skip Docker Compose files | | --no-husky | Skip Husky pre-commit hooks | | --no-git | Skip git init | | --no-install | Skip pnpm install and Prisma generate | | --sops | Set up SOPS encrypted secrets | | --force | Scaffold into a non-empty directory | | -y, --yes | Use defaults, skip prompts |

After scaffolding

cd my-app

# Start Postgres + Redis
pnpm docker:dev

# Run migrations and seed admin user
pnpm db:migrate
pnpm db:seed

# Run everything (main app, landing, database)
mprocs

Default admin credentials (if you kept the seed defaults):

Contributing

See CONTRIBUTING.md for local development, template sync, and release instructions.

Links

License

MIT © Rishi Ahuja