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

@sayoriqwq/create-yume

v0.2.3

Published

A focused local project scaffolding CLI for React, Vue, Node, CLI tools, libraries, and pnpm workspaces

Downloads

521

Readme

Create Yume

Create Yume is a focused local project scaffolding CLI.

It currently supports generating:

  • React and Vue standalone apps
  • TypeScript ESM Node apps
  • TypeScript ESM CLI tools
  • TypeScript ESM library packages
  • pnpm workspace roots
  • structured workspace package graphs with apps/* and libs/* packages

The project is intentionally not a general-purpose template platform yet. Existing project append/update, worker apps, remote templates, and pluginized template sources are planned for later versions rather than the first public release.

Quick Start

After the package is published, run:

pnpm dlx @sayoriqwq/create-yume --preset standalone-react-full --name my-app

For CI or agent-driven generation, use complete non-interactive input:

pnpm dlx @sayoriqwq/create-yume --preset standalone-cli-minimal --name my-tool --no-input

Preview the generation plan without writing files:

pnpm dlx @sayoriqwq/create-yume --preset workspace-cli-library --name my-workspace --dry-run

Use structured JSON for custom workspace package graphs:

pnpm dlx @sayoriqwq/create-yume --spec create-yume.json --name my-workspace --no-input

Common Presets

  • standalone-react-minimal
  • standalone-react-full
  • standalone-vue-minimal
  • standalone-vue-full
  • standalone-backend-minimal
  • standalone-backend-full
  • standalone-cli-minimal
  • standalone-cli-effect
  • standalone-cli-full
  • standalone-library-minimal
  • standalone-library-node
  • workspace-root-minimal
  • workspace-cli-library
  • workspace-fullstack-react
  • workspace-fullstack-vue

Compatibility aliases such as react-full, vue-full, workspace-root, node-minimal, cli-minimal, and cli-effect are still accepted.

Local Development

pnpm install
pnpm --filter create-yume build
node apps/cli/dist/index.js --help

Release confidence checks live in the repository root:

pnpm verify
pnpm --filter create-yume smoke:dry-run
pnpm --filter create-yume smoke:generated
pnpm --filter create-yume smoke:examples

smoke:generated and smoke:examples use the same generated scaffold matrix and write to apps/examples/.generated/. Use CREATE_YUME_SMOKE_CASES to run only the affected surface when a change does not touch the full template set:

CREATE_YUME_SMOKE_CASES=react pnpm --filter create-yume smoke:examples
CREATE_YUME_SMOKE_CASES=cli,library pnpm --filter create-yume smoke:examples
CREATE_YUME_SMOKE_CASES=workspace pnpm --filter create-yume smoke:examples