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

@armadaos/bridge

v1.0.1

Published

ArmadaOS Bridge — One-click local model connection via WebSocket. No tunnels, no API keys.

Downloads

187

Readme

ArmadaOS Bridge

One-click local model connection. No tunnels. No API keys.

ArmadaOS Bridge connects your local AI models (Ollama, CLIProxyAPI, LM Studio, etc.) to your ArmadaOS instance via a persistent WebSocket connection. Run it on your Mac, your PC, or both — and all your local models appear in ArmadaOS automatically.

Quick Start

# Install globally
npm install -g armadaos-bridge

# Authenticate
armadaos-bridge login --token YOUR_TOKEN

# Start the Bridge
armadaos-bridge start

That's it. Your local models are now available in ArmadaOS.

How It Works

Your Machine                              ArmadaOS Cloud
┌─────────────────────┐                  ┌──────────────┐
│ armadaos-bridge     │───WebSocket───▶  │ Engine       │
│  ├─ Ollama :11434   │                  │  ├─ /ws/bridge│
│  ├─ CLIProxy :8317  │                  │  └─ routes    │
│  └─ LM Studio :1234 │                  │     requests  │
└─────────────────────┘                  │     back thru │
                                         │     the WS    │
                                         └──────────────┘
  1. Bridge auto-discovers local AI providers (Ollama, CLIProxyAPI, LM Studio, etc.)
  2. Establishes an outbound WebSocket to the ArmadaOS Engine
  3. Registers all discovered models with the Engine
  4. Engine proxies inference requests back through the WebSocket
  5. Bridge routes requests to the correct local provider

No inbound ports. No tunnels. No Ngrok. Your API keys never leave your machine.

Commands

| Command | Description | |---|---| | armadaos-bridge start | Start the Bridge (foreground) | | armadaos-bridge start --daemon | Start the Bridge (background) | | armadaos-bridge stop | Stop the running Bridge | | armadaos-bridge status | Show Bridge status and discovered providers | | armadaos-bridge login | Authenticate with ArmadaOS | | armadaos-bridge logout | Remove stored credentials | | armadaos-bridge config show | Show current configuration | | armadaos-bridge config set <key> <value> | Update a config value | | armadaos-bridge config path | Show config file location |

Auto-Discovery

Bridge automatically scans these well-known ports:

| Port | Provider | |---|---| | 11434 | Ollama | | 8317 | CLIProxyAPI (Gemini) | | 8080 | LocalAI | | 1234 | LM Studio | | 3001 | Claude Proxy | | 5000 | Custom Provider |

Add custom ports in bridge.yaml:

discovery:
  customPorts:
    - port: 9000
      name: "My Custom Model Server"
      id: "custom-server"

Multi-Device

Run Bridge on multiple machines simultaneously. All models from all devices appear as one unified pool in ArmadaOS.

Mac (Ollama)  ──WebSocket──▶  Engine  ◀──WebSocket──  PC (CLIProxyAPI)

Configuration

Config file location:

  • macOS: ~/Library/Application Support/armadaos-bridge/bridge.yaml
  • Windows: %APPDATA%/armadaos-bridge/bridge.yaml
  • Linux: ~/.config/armadaos-bridge/bridge.yaml

Requirements

  • Node.js 18+
  • At least one local AI provider running (Ollama, CLIProxyAPI, LM Studio, etc.)

License

MIT