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

@kooboo/cli

v0.5.0

Published

> Command alias: `kb` - You can use `kb` instead of `kooboo-cli` as the prefix for all commands

Readme

Kooboo CLI

Command alias: kb - You can use kb instead of kooboo-cli as the prefix for all commands

Kooboo CLI is a command-line tool for Kooboo local development.

Install

# Using npm
npm install -g @kooboo/cli

# Using pnpm
pnpm add -g @kooboo/cli

# Using yarn
yarn global add @kooboo/cli

Commands

kooboo-cli <command> [options]
# or use the shorthand form
kb <command> [options]

| Command | Description | Aliases | | ---------- | --------------------------------------------- | ------- | | config | Set or get configuration values | | | new | Create a new Kooboo site | n | | clone | Clone a remote Kooboo site | c | | pull | Pull remote Kooboo site code to local | | | push | Push local Kooboo site code to remote | | | generate | Generate Kooboo code resources | g | | sync | Synchronize Kooboo site code to server | | | export | Export Kooboo site resources to zip file | |

Usage

config

Set or get configuration values.

# Get all configs (full command)
kooboo-cli config
# Get all configs (shorthand command)
kb config

# Get a specific config (full command)
kooboo-cli config <key>
# Get a specific config (shorthand command)
kb config <key>

# Set a config (full command)
kooboo-cli config <key> <value>
# Set a config (shorthand command)
kb config <key> <value>

# Set a global config (full parameter)
kooboo-cli config <key> <value> --global
# Set a global config (shorthand parameter)
kb config <key> <value> -g

new

Create a new Kooboo site.

# Create a new site (full command)
kooboo-cli new <site-name>
# Create a new site (shorthand command)
kb new <site-name>

# Specify host (full parameter)
kooboo-cli new <site-name> --host <host>
# Specify host (shorthand parameter)
kb new <site-name> -h <host>

clone

Clone a remote Kooboo site.

# Clone a site (full command)
kooboo-cli clone <siteUrl>
# Clone a site (shorthand command)
kb clone <siteUrl>

# Specify directory (full command)
kooboo-cli clone <siteUrl> <dir>
# Specify directory (shorthand command)
kb clone <siteUrl> <dir>

# Specify template (full parameter)
kooboo-cli clone <siteUrl> <dir> --template <templateName>
# Specify template (shorthand parameter)
kb clone <siteUrl> <dir> -t <templateName>

# Specify authentication (full parameter)
kooboo-cli clone <siteUrl> <dir> --username <username> --password <password>
# Specify authentication (shorthand parameter)
kb clone <siteUrl> <dir> -u <username> -p <password>

pull

Pull remote Kooboo site code to local environment.

# Pull all resources (full command)
kooboo-cli pull
# Pull all resources (shorthand command)
kb pull

# Pull a specific resource type (full command)
kooboo-cli pull <resource>
# Pull a specific resource type (shorthand command)
kb pull <resource>

# Pull a specific resource by name (full command)
kooboo-cli pull <resource> <name>
# Pull a specific resource by name (shorthand command)
kb pull <resource> <name>

push

Push local Kooboo site code to remote environment.

# Push all changes (full command)
kooboo-cli push
# Push all changes (shorthand command)
kb push

# Push a specific resource type (full command)
kooboo-cli push <resource>
# Push a specific resource type (shorthand command)
kb push <resource>

# Push a specific resource by name (full command)
kooboo-cli push <resource> <name>
# Push a specific resource by name (shorthand command)
kb push <resource> <name>

generate

Generate Kooboo code resources.

# Generate a resource (full command)
kooboo-cli generate <resource> <name>
# Generate a resource (shorthand command)
kb generate <resource> <name>
# Generate a resource (shorthand command with alias)
kb g <resource> <name>

sync

Synchronize Kooboo site code to server environment.

# Sync changes (full command)
kooboo-cli sync
# Sync changes (shorthand command)
kb sync

# Initialize synchronization (full parameter)
kooboo-cli sync --init
# Initialize synchronization (shorthand parameter)
kb sync -i

# Specify site information (full parameter)
kooboo-cli sync --site-url <url> --username <username> --password <password>
# Specify site information (shorthand parameter)
kb sync -s <url> -u <username> -p <password>

# Specify common module path (full parameter)
kooboo-cli sync --common-module-path <path>
# Specify common module path (shorthand parameter)
kb sync -c <path>

export

Export Kooboo site resources to zip file.

# Export site resources (full command and parameters)
kooboo-cli export --site-url <url> --username <username> --password <password> --file <file>
# Export site resources (shorthand command and parameters)
kb export -s <url> -u <username> -p <password> -f <file>