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-inox-app

v0.3.3

Published

Scaffold production-ready monorepo projects with one command

Readme

create-inox-app

Scaffold production-ready monorepo projects with one command.

npm version

Quick Start

npx create-inox-app@latest

Follow the interactive prompts to configure your project.

Templates

| Template | Description | | --- | --- | | ai-chat-app | Full-stack AI chat application with Next.js, streaming, sessions | | blank | Minimal Next.js boilerplate with health endpoint |

Features

Choose from these options during setup:

| Category | Options | | --- | --- | | Database | PostgreSQL + ParadeDB, None | | Cache | Redis, None | | Auth | Better Auth, None | | Observability | Langfuse, None | | Environments | dev, staging, production (multi-select) | | Tooling Addons | Turborepo, oxlint, oxfmt, Lefthook, Commitlint | | Infra Addons | Ingress, TLS, PVC |

CLI Flags

Skip prompts by passing flags directly:

npx create-inox-app@latest my-app \
  --template ai-chat-app \
  --database postgresql-paradedb \
  --cache redis \
  --auth better-auth \
  --observability langfuse \
  --environments dev,staging,production \
  --gitlab-group my-group \
  --gitlab-url https://gitlab.example.com \
  --registry-host registry.example.com \
  --domain-suffix apps.example.com \
  --git \
  --install

| Flag | Description | | --- | --- | | --name <name> | Project name (or pass as first arg) | | --template <t> | ai-chat-app | blank | | --database <db> | postgresql-paradedb | none | | --cache <c> | redis | none | | --auth <a> | better-auth | none | | --observability <o> | langfuse | none | | --environments <e> | Comma-separated: dev,staging,production | | --gitlab-group <g> | GitLab group name | | --gitlab-url <url> | GitLab instance URL | | --registry-host <host> | Docker registry host | | --domain-suffix <suffix> | Domain suffix for environment URLs | | --git / --no-git | Initialize git repository | | --install / --no-install | Install dependencies | | -y, --yes | Accept all defaults |

Output

The scaffolder generates three repositories:

my-app/              # Application source code
kustomize/base/      # Shared Kubernetes manifests
kustomize/overlays/  # Per-environment Kubernetes patches

Development

# Install dependencies
bun install

# Run CLI in development
bun run dev

# Build for distribution
bun run build

# Type check
bun run check-types

Releasing

This project uses Changesets for versioning.

# 1. Add a changeset describing your changes
bun run changeset

# 2. Version bump + changelog generation
bun run version

# 3. Build and publish to npm
bun run release

License

MIT