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

v1.1.5

Published

Create a clean Ruvyxa application with production-minded defaults and a focused project structure.

Readme


Usage

npm create ruvyxa@latest my-app
cd my-app
npm install
npm run dev

Choose a starter with --template (or -t when invoking the binary directly):

npm create ruvyxa@latest my-blog -- --template blog
npm create ruvyxa@latest my-admin -- --template crud
npm create ruvyxa@latest my-api -- --template api

Run it with no arguments on a terminal and it becomes interactive: it prompts for a project name and lets you pick the starter with an arrow-key menu (j/k also navigate). The scaffold output shows the real generated file tree — nested, directories first, colored by role — and runs under an animated mascot spinner.

Available starters are minimal (the default), blog, crud, and api.

The generated project starts with:

AGENTS.md
CLAUDE.md
.gitignore
app/globals.css
app/layout.tsx
app/page.tsx
public/ruvyxa.png
package.json
ruvyxa.config.ts
tsconfig.json

The minimal starter stays intentionally small. Focused starters add a blog with static parameters, a CRUD flow with an API and validated action, or an API-only backend while keeping the same public framework conventions. Read the repository User Guide for the end-to-end app workflow and Development & Testing for contributor checks.

Project Names

Project names must be valid directory names for the target operating system. On Windows, reserved device names such as con, prn, and aux are rejected, and names cannot end with unsafe trailing characters.