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

cloudos-cli

v1.0.4

Published

CloudOS Command Line Interface

Readme

cloudos-cli

CloudOS Command Line Interface - Manage your CloudOS workspace from the terminal.

Installation

npm install -g cloudos-cli

Quick Start

# Login
cloudos login

# List workspaces
cloudos workspaces

# Create workspace
cloudos workspaces:create

# List apps
cloudos apps --workspace <workspace-id>

# Install app
cloudos apps:install <app-id> --workspace <workspace-id>

# Initialize new app
cloudos init

# Deploy app
cloudos deploy

# View logs
cloudos logs <app-id> --workspace <workspace-id>

Commands

Authentication

# Login to CloudOS
cloudos login

# Logout
cloudos logout

Workspaces

# List your workspaces
cloudos workspaces

# Create a new workspace
cloudos workspaces:create

# Delete a workspace
cloudos workspaces:delete <workspace-id>

Apps

# List installed apps
cloudos apps --workspace <workspace-id>

# Install an app
cloudos apps:install <app-id> --workspace <workspace-id>

# Uninstall an app
cloudos apps:uninstall <app-id> --workspace <workspace-id>

Development

# Initialize a new CloudOS app
cloudos init

# Deploy your app
cloudos deploy --workspace <workspace-id>

# View app logs
cloudos logs <app-id> --workspace <workspace-id>

# Follow logs in real-time
cloudos logs <app-id> --workspace <workspace-id> --follow

# Show last 50 lines
cloudos logs <app-id> --workspace <workspace-id> --lines 50

Configuration

The CLI stores configuration in ~/.config/cloudos-cli/:

{
  "apiUrl": "https://api.cloud-os.app",
  "token": "your-auth-token",
  "defaultWorkspace": "workspace-id"
}

App Configuration

Create a cloudos.config.json in your app directory:

{
  "name": "My App",
  "slug": "my-app",
  "description": "My awesome CloudOS app",
  "type": "spa",
  "version": "1.0.0",
  "permissions": [
    "storage:read",
    "storage:write",
    "notifications:send"
  ],
  "routes": {
    "/": "index.html",
    "/api/*": "serverless"
  }
}

Examples

Login and Setup

# Login
cloudos login
# Enter your email and password

# List workspaces
cloudos workspaces
# ★ My Company (my-company)
#    ID: workspace-123
#    Plan: business

Create and Deploy App

# Create new app directory
mkdir my-app && cd my-app

# Initialize app
cloudos init
# Answer prompts...

# Deploy app
cloudos deploy --workspace workspace-123

Manage Apps

# List marketplace apps (coming soon)
cloudos marketplace

# Install app
cloudos apps:install calculator --workspace workspace-123

# View logs
cloudos logs calculator --workspace workspace-123 --follow

License

MIT