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

@radhya/mach

v1.1.0

Published

Mach CLI: Cloud Build Orchestrator for React Native & Expo

Readme

Mach CLI

Cloud Build Orchestrator for React Native & Expo

Mach is a powerful CLI that lets you build, sign, and submit React Native & Expo apps to the App Store and Google Play — all from the cloud. No more local build headaches.

Installation

npm install -g @radhya/mach

Quick Start

# Login to Mach Dashboard
mach login

# Initialize a project
mach init

# Link an existing project
mach link

# Run a cloud build
mach build --platform ios
mach build --platform android

Commands

| Command | Description | |---------|-------------| | mach login | Login to Mach Dashboard | | mach init | Create a new Mach project | | mach link | Link local directory to a Mach project | | mach me | Display current user details | | mach build | Run a cloud build (iOS / Android) | | mach submit | Automated store submission (App Store / Google Play) | | mach credentials | Interactive credential management (iOS / Android) | | mach env | Manage environment variables | | mach config | Show resolved configuration for a profile | | mach start | Start the development server (Metro) | | mach host | Setup AWS S3 static hosting with CloudFront | | mach sitemap | Generate sitemap.xml from Expo Router | | mach audit | Run automated security audit on the project |

Cloud Builds

Build your apps on cloud infrastructure using AWS Spot Instances — fast, cost-effective, and fully automated.

# iOS build
mach build --platform ios --profile production

# Android build
mach build --platform android --profile production

# Local build
mach build --platform ios --local

# Dry run (generate build script without launching)
mach build --platform android --dry-run

Build Options

  • --platform <os> — Target platform: ios or android (required)
  • --profile <name> — Build profile: production, staging, development
  • --local — Run build on local machine
  • --dry-run — Generate script without launching
  • --verbose — Enable verbose logging
  • --simulator — Build for iOS Simulator (no signing required)

Store Submission

Automate your App Store and Google Play submissions directly from the CLI.

# Submit to App Store
mach submit --platform ios

# Submit to Google Play (internal track)
mach submit --platform android --track internal

Credential Management

Manage iOS certificates, provisioning profiles, Android keystores, and service credentials — all in one place.

# Interactive credential manager
mach credentials

# Legacy: Automated provisioning
mach credentials:setup --platform ios
mach credentials:setup --platform android

# Upload service credentials (ASC API Key / Google Service JSON)
mach credentials:service --platform ios --file key.p8 --key-id XXXXX --issuer-id XXXXX

Configuration

Create a mach.config.json in your project root:

{
  "projectId": "your-project-id",
  "name": "MyApp",
  "slug": "my-app",
  "scheme": "myapp",
  "ios": {
    "bundleIdentifier": "com.example.myapp",
    "teamId": "XXXXXXXXXX"
  },
  "android": {
    "package": "com.example.myapp"
  }
}

Build Profiles

Define multiple build profiles for different environments:

{
  "projectId": "your-project-id",
  "profiles": {
    "development": {
      "ios": { "configuration": "Debug", "exportMethod": "development" }
    },
    "production": {
      "ios": { "configuration": "Release", "exportMethod": "app-store" }
    }
  }
}

Environment Variables

# Set environment variables
mach env set API_URL=https://api.example.com SECRET_KEY=xxx

# List all variables
mach env list

Development Server

# Start Metro with profile
mach start --build-profile development

# Start with tunnel
mach start --tunnel

# Clear cache
mach start --clear

Security Audit

Run automated security checks on your project:

mach audit
mach audit --severity high
mach audit --fix
mach audit --json  # CI/CD friendly output

Requirements

  • Node.js 18+
  • npm or yarn
  • For iOS builds: Xcode (local) or cloud instance with macOS
  • For Android builds: Android SDK (local) or cloud instance

License

ISC


Built by Radhya Softlabs