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

@vanikya/ota-cli

v0.1.7

Published

CLI tool for OTA Update system - self-hosted CodePush/EAS Updates alternative

Readme

@vanikya/ota-cli

Beta Notice: This package is currently in beta. Testing is in progress and APIs may change. Use in production at your own discretion. We welcome feedback and bug reports via GitHub Issues.

CLI tool for managing OTA (Over-The-Air) updates for React Native and Expo apps. A self-hosted alternative to CodePush and EAS Updates.

Installation

npm install -g @vanikya/ota-cli

Quick Start

1. Login to your OTA server

ota login

You'll be prompted for:

  • Server URL (your Cloudflare Workers deployment)
  • API Key

2. Create an app

ota apps create --name "My App" --slug my-app --platform both

3. Create a release channel

ota channels create --app my-app --name production

4. Generate signing keys

ota keys generate --app my-app

5. Publish an update

ota release --app my-app --channel production --version 1.0.0

Commands

Authentication

ota login              # Login to OTA server
ota logout             # Clear stored credentials

App Management

ota apps list                                    # List all apps
ota apps create --name <name> --slug <slug>      # Create new app
ota apps delete --app <slug>                     # Delete an app

Channel Management

ota channels list --app <slug>                   # List channels
ota channels create <name> --app <slug>          # Create channel
ota channels delete <name> --app <slug>          # Delete channel

Releases

ota release --app <slug> --channel <channel> --version <version>   # Publish update
ota releases list --app <slug>                                      # List releases
ota rollback --app <slug> --channel <channel>                       # Rollback to previous

Signing Keys

ota keys generate --app <slug>   # Generate Ed25519 key pair
ota keys export --app <slug>     # Export public key

Analytics

ota analytics --app <slug>                    # View update statistics
ota analytics --app <slug> --days 30          # Last 30 days

Configuration

Configuration is stored in ~/.ota-update/config.json:

{
  "serverUrl": "https://your-server.workers.dev",
  "apiKey": "ota_xxx..."
}

Signing keys are stored in ~/.ota-update/keys/<app-slug>.json.

Server Setup

This CLI requires a backend server. See @ota-update/server for deployment instructions.

License

MIT