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

@appsonair/appsonair-cli

v1.0.1

Published

A command-line tool for managing AppsOnAir OTA (Over-the-Air) updates and CI/CD integrations.

Readme

AppsOnAir CLI

A command-line tool for managing AppsOnAir OTA (Over-the-Air) updates and CI/CD integrations.

Usage

Run the appsonair command to see the available commands and options:

AppsOnAir CLI

📖 Full documentation: AppsOnAir CLI

Tech Stack

  • NPM: 11.6.2
  • Runtime: Node.js (ESM)
  • CLI Framework: Commander.js
  • API: GraphQL via graphql-request
  • Auth Storage: keytar (OS keychain — all user data stored securely)
  • UI: chalk + @inquirer/prompts

Setup

Install globally — this puts the appsonair command on your PATH:

npm install -g @appsonair/appsonair-cli

Commands

The toolset ships as two binaries that share one login (token stored in the OS keychain):

  • appsonair — auth, project setup + system commands (login, logout, whoami, init <service>, system-info, uninstall)
  • appsonair-ota — OTA build upload (upload)

Setup runs through appsonair init <service>; each service's actions live on its own appsonair-<service> binary (appsonair-ota today).

Auth (appsonair)

appsonair login       # Login via browser and save token locally
appsonair logout      # Logout and clear local token
appsonair whoami      # Show current logged-in user

OTA (appsonair-ota)

Log in once with appsonair login; all commands reuse that session.

yaml mode — reads paths from .appsonair-cli.yaml (run from project root):

appsonair init ota                                         # initialize config
appsonair-ota upload                                       # upload both android + ios
appsonair-ota upload --android                             # android only
appsonair-ota upload --ios                                 # ios only

path mode — direct upload from anywhere, selects workspace + app interactively:

appsonair-ota upload --path build/app.apk                 # auto detect APK → android
appsonair-ota upload --path build/app.ipa                 # auto detect IPA → ios
appsonair-ota upload --android-path build/app.apk         # android only, strict APK validation
appsonair-ota upload --ios-path build/app.ipa             # ios only, strict IPA validation
appsonair-ota upload --android-path build/app.apk --ios-path build/app.ipa  # both in one command

Folder paths also work — picks the newest APK/IPA by modified time:

appsonair-ota upload --android-path build/app/outputs/apk/release/

Config (.appsonair-cli.yaml)

Top-level keys (version, workspaceId, appId, appName) are shared by every product area. Each area keeps its own settings under its own block (ota: today; future areas add sibling blocks). Re-running an init merges into this file rather than overwriting it, so your paths and other areas' settings are preserved.

workspaceId: abc123
appId: app456
appName: my-app

ota:
  androidOutput: build/app/outputs/flutter-apk/  # folder or exact file
  iosOutput: build/ios/ipa/                       # folder or exact file

System (appsonair)

appsonair system-info   # Check system environment and dependencies
appsonair uninstall     # Remove the CLI and clear all local data

Platform Support

| Feature | macOS | Linux | Windows | |---|---|---|---| | appsonair login / logout / whoami | ✓ | ✓ | ✓ | | appsonair init ota | ✓ | ✓ | ✓ | | appsonair-ota upload — Android APK | ✓ | ✓ | ✓ | | appsonair-ota upload — iOS IPA (pre-built file) | ✓ | ✓ | ✓ | | iOS build via iosConfig in yaml | ✓ | ✗ | ✗ | | appsonair system-info — Android checks | ✓ | ✓ | ✓ | | appsonair system-info — iOS checks | ✓ | skipped | skipped |

iOS builds (xcodebuild) are macOS-only. On Linux, build your IPA on a Mac and upload it directly:

appsonair-ota upload --ios-path path/to/app.ipa