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

@kyro-cms/create

v0.12.73

Published

Interactive scaffolding for Kyro CMS projects

Readme

@kyro-cms/create

Official interactive and headless project scaffolder for Kyro CMS.

npm version License: MIT TypeScript


🌟 Overview

@kyro-cms/create is the fastest way to bootstrap a production-ready Kyro CMS application with Astro. It provisions the project structure, generates your kyro.config.ts and astro.config.mjs, initializes your database adapters, provisions local Super Admin credentials, and initializes a Git repository.


🚀 Quick Start

Run the interactive wizard using your favorite package manager:

# pnpm (recommended)
pnpm create @kyro-cms@latest my-app

# npm
npm create @kyro-cms@latest my-app

# bun
bun create @kyro-cms@latest my-app

# Direct execution with npx
npx @kyro-cms/create@latest my-app

🤖 Non-Interactive Setup (CI/CD & Headless Environments)

@kyro-cms/create includes automated Non-TTY terminal fallback detection (!process.stdout.isTTY) and manual option parsing. Pass parameters directly to bypass prompts in scripts, Dockerfiles, or background workflows:

# Scaffold with SQLite (default) and blog template:
npx @kyro-cms/create my-app --db sqlite --template blog --yes

# Scaffold with PostgreSQL:
npx @kyro-cms/create my-app --db postgres --template ecommerce --admin-email [email protected] -y

🚩 CLI Options

| Flag | Shorthand | Description | Options | |---|---|---|---| | --database <type> | --db | Database adapter configuration | sqlite, postgres, mongodb | | --template <name> | -t | Project starter template | minimal, starter, blog, ecommerce, kitchen-sink | | --admin-email <email> | — | Initial super admin email address | Any valid email (default: [email protected]) | | --yes | -y | Skip all prompts and use defaults/flags | true | | --non-interactive | — | Explicitly force non-interactive mode | true |


📦 What It Generates

  1. astro.config.mjs: Preconfigured with kyro() and kyroAdmin() integrations.
  2. kyro.config.ts: Standardized with defineKyroConfig and pre-populated collections matching your template choice.
  3. Database Configuration:
    • sqlite: Zero-config local SQLite adapter at ./data/kyro.db.
    • postgres: Production-ready PostgreSQL adapter via Drizzle ORM (reads DATABASE_URL from .env).
    • mongodb: MongoDB adapter configuration (reads MONGODB_URI from .env).
  4. Super Admin Setup: Generates cryptographically secure initial super admin credentials saved to .env.
  5. Git Repository: Initialized with .gitignore and an initial commit.

💻 Programmatic Usage

You can also use @kyro-cms/create programmatically in Node.js scripts or custom CLIs:

import { promptUser, parseCliArgs } from '@kyro-cms/create';

// Interactive prompt
const answers = await promptUser();

// Or parse CLI arguments
const cliConfig = parseCliArgs();

📄 License

MIT © Daniel Dozie