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 🙏

© 2025 – Pkg Stats / Ryan Hefner

airborne-cli-react-native

v0.9.1

Published

Cli for Airborne

Downloads

31

Readme

README.md

Project Overview

Airborne CLI is a React Native build tool that generates custom bundle configurations for Android and iOS platforms. It creates release configuration JSON file with bundling information, file paths, and timeout settings.

Configuration

airborne-config.json Format

{
  "config_timeout": "1000",
  "boot_timeout": "2000",
  "namespace": "your-namespace",
  "js_entry_file": "index.js",
  "android": {
    "index_file_path": "index.android.bundle"
  },
  "ios": {
    "index_file_path": "main.jsbundle"
  }
}

Mandatory Configuration Values

  • config_timeout - Configuration timeout in milliseconds
  • boot_timeout - Boot timeout in milliseconds
  • namespace - Package namespace identifier

Optional Configuration

  • js_entry_file - Entry file of the react. Defaults to "index.js".
  • index_file_path - Platform-specific index file paths for android and iOS. Defaults to index.android.bundle and main.jsbundle respectively.

Commands

Development Commands

  • build-airborne <platform> - Main command to build for android or ios

CLI Usage

# Build for Android
npx build-airborne android

# Build for iOS  
npx build-airborne ios

Architecture

Core Components

Main Entry Point (bin/index.js):

  • CLI argument parsing using Commander.js
  • Interactive prompts for configuration values
  • Platform-specific build logic orchestration

Default Output Locations of release_config

  • Android: android/app/src/main/assets/{namespace}/release_config.json
  • iOS: ios/{namespace}.bundle/release_config.json

If you want the release_config to be generated in any other path yo can specify the path shown below.

npx build-airborne <platform> --output custom-output.json

Build Output

The tool creates platform-specific build directories:

  • android/build/generated/airborne/ - Android build artifacts
  • ios/build/generated/airborne/ - iOS build artifacts

These contain the React Native bundle and assets generated by the react-native bundle command.

Release Commands

  • npm run release - Create a new release using release-it