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

zudojs-cli

v1.0.0

Published

Command-line interface for scaffolding, generating, and managing Zudojs framework projects.

Readme

zudojs-cli

Command-line interface for scaffolding, generating, and managing Zudojs framework projects.

Installation

First time

npm install -g zudojs-cli

Upgrading from an old version?

If zudojs -v doesn't match the latest npm version, clear the cache:

npm cache clean --force
npm install -g zudojs-cli@latest

Getting permission errors?

Don't use sudo. Set up a user-local npm prefix instead:

mkdir -p ~/.npm-global
npm config set prefix '~/.npm-global'
echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.bashrc
source ~/.bashrc
npm install -g zudojs-cli@latest

Quick Start

# Create a new backend project
zudojs create my-api

# Create a frontend project
zudojs create my-web --type frontend --frontend react

# Create a fullstack project
zudojs create my-system --type fullstack --frontend next --architecture monolith

# Start development servers
zudojs dev

# Generate a module
zudojs generate module users

# Add a feature
zudojs add database

# Build the project
zudojs build

zudojs build and zudojs doctor exit with a non-zero status when they fail, so they can be used as CI gates.

Disabling the update check

zudojs-cli checks npm for a newer version after a global install. Set ZUDOJS_NO_UPDATE_CHECK=1 to turn it off; it is skipped automatically when CI is set, when npm is offline, and for non-global installs.

Commands

| Command | Description | | ---------- | ------------------------------------------------------------------------ | | create | Scaffold a new project (backend, frontend, or fullstack) | | generate | Generate files (service, module, command, query, controller, repository) | | add | Add feature packages (database, queue, messaging, etc.) | | dev | Start development servers | | build | Build the project with its detected package manager | | doctor | Run project diagnostics | | info | Show project information |

Supported Frameworks

  • Backend: Node.js (Zudojs runtime)
  • Frontend: React, Next.js, Vue, Nuxt, Angular, Svelte, SvelteKit, Astro, Vanilla, Flutter, React Native
  • Architectures: Monolith, Modular Monolith, Microservice

Documentation

See the Zudojs README for full documentation.