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

openclawd-termux

v1.0.0

Published

OpenClaw AI Gateway for Android Termux with Bionic Bypass

Readme

OpenClawd-Termux

npm version License: MIT Node.js Android Termux PRs Welcome

Run OpenClaw AI Gateway on Android using Termux with automatic proot Ubuntu setup and Bionic Bypass fix.


Features

  • One-Command Setup - Automatically installs proot-distro, Ubuntu, Node.js 22, and OpenClaw
  • Bionic Bypass - Fixes os.networkInterfaces() crash on Android's Bionic libc
  • Smart Loading - Shows spinner until gateway is actually ready
  • Pass-through Commands - Run any OpenClaw command directly via openclawdx

Quick Install

One-liner (recommended)

curl -fsSL https://raw.githubusercontent.com/mithun50/openclawd-termux/main/install.sh | bash

Or via npm

npm install -g openclawd-termux
openclawdx setup

Requirements

| Requirement | Details | |-------------|---------| | Android | 10 or higher | | Termux | From F-Droid (NOT Play Store) | | Storage | ~2GB for Ubuntu + OpenClaw |


Usage

# First-time setup (installs proot + Ubuntu + Node.js + OpenClaw)
openclawdx setup

# Check installation status
openclawdx status

# Start OpenClaw gateway
openclawdx start

# Run onboarding to configure API keys
openclawdx onboarding

# Enter Ubuntu shell
openclawdx shell

# Any OpenClaw command works directly
openclawdx doctor
openclawdx gateway --verbose

How It Works

┌─────────────────┐     ┌─────────────────┐     ┌─────────────────┐
│     Termux      │     │  proot-distro   │     │     Ubuntu      │
│   openclawdx    │ ──► │                 │ ──► │    OpenClaw     │
│                 │     │  Bionic Bypass  │     │    Gateway      │
└─────────────────┘     └─────────────────┘     └─────────────────┘
  1. openclawdx runs in Termux
  2. Commands are passed through proot-distro with Bionic Bypass
  3. OpenClaw runs inside Ubuntu environment

Configuration

Onboarding

When running openclawdx onboarding:

  • Binding: Select Loopback (127.0.0.1) for non-rooted devices
  • API Keys: Add your Gemini/OpenAI/Claude keys

Battery Optimization

Important: Disable battery optimization for Termux

Settings → Apps → Termux → Battery → Unrestricted


Dashboard

Access the web dashboard at: http://127.0.0.1:18789

| Command | Description | |---------|-------------| | /status | Check gateway status | | /think high | Enable high-quality thinking | | /reset | Reset session |


Troubleshooting

Gateway won't start

# Check status
openclawdx status

# Re-run setup if needed
openclawdx setup

# Make sure onboarding is complete
openclawdx onboarding

"os.networkInterfaces" error

Bionic Bypass not configured. Run:

openclawdx setup

Process killed in background

Disable battery optimization for Termux in Android settings.

Permission denied

termux-setup-storage

Manual Setup

1. Install proot-distro and Ubuntu

pkg update && pkg install -y proot-distro
proot-distro install ubuntu

2. Setup Node.js in Ubuntu

proot-distro login ubuntu
apt update && apt install -y curl
curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
apt install -y nodejs
npm install -g openclaw

3. Create Bionic Bypass

mkdir -p ~/.openclawd
cat > ~/.openclawd/bionic-bypass.js << 'EOF'
const os = require('os');
const originalNetworkInterfaces = os.networkInterfaces;
os.networkInterfaces = function() {
  try {
    const interfaces = originalNetworkInterfaces.call(os);
    if (interfaces && Object.keys(interfaces).length > 0) {
      return interfaces;
    }
  } catch (e) {}
  return {
    lo: [{
      address: '127.0.0.1',
      netmask: '255.0.0.0',
      family: 'IPv4',
      mac: '00:00:00:00:00:00',
      internal: true,
      cidr: '127.0.0.1/8'
    }]
  };
};
EOF

4. Add to bashrc

echo 'export NODE_OPTIONS="--require ~/.openclawd/bionic-bypass.js"' >> ~/.bashrc
source ~/.bashrc

5. Run OpenClaw

openclaw onboarding  # Select "Loopback (127.0.0.1)"
openclaw gateway --verbose

Credits


Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

MIT License - see LICENSE file for details.