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

ally-devops

v1.1.1

Published

Self-hosted developer platform and control plane for Linux servers.

Readme

Ally DevOps

Ally DevOps is a self-hosted developer platform/control plane for Linux servers.

It ships as an npm package and includes:

  • a polished CLI: ally
  • an interactive TUI
  • a bundled local web UI
  • a deployment engine for full stacks or selected services
  • sequential stable port allocation
  • Cloudflare DNS and Tunnel automation
  • diagnostics and doctor mode
  • backup and restore
  • OpenClaw + LiteLLM + Modal-aware AI wiring
  • service variants and interactive install prompts with guidance for each secret or variable

Install

npm install -g ally-devops
ally install

Requirements

  • Linux
  • Docker Engine
  • Docker Compose v2 plugin
  • Bash
  • tar
  • Optional:
    • cloudflared for managed tunnel runs
    • gh for GitHub migration
    • git
    • openssl

Main commands

ally install
ally uninstall
ally stack deploy
ally stack destroy
ally service install gitlab
ally service remove gitlab
ally start grafana
ally stop grafana
ally restart grafana
ally logs grafana
ally shell grafana
ally inspect grafana
ally ps
ally status
ally urls
ally backup
ally restore ./backups/ally-backup-2026-03-09.tar.gz
ally diagnostics
ally doctor
ally ports
ally dns apply
ally dns list
ally dns validate
ally tunnel apply
ally webui start
ally tui
ally completion install
ally migrate github-to-gitlab

Configuration layout

By default Ally stores runtime state in:

  • ~/.ally-devops/config.json
  • ~/.ally-devops/credentials.json
  • ~/.ally-devops/state.json
  • ~/.ally-devops/ports.json
  • ~/.ally-devops/generated/
  • ~/.ally-devops/backups/

Copy the examples from examples/ if you want to pre-seed configuration.

Interactive secret capture

Every install flow prompts for required variables before deployment begins. Each variable includes:

  • a label
  • description
  • whether it is secret
  • a default or auto-generation rule
  • a note explaining how to obtain it

This applies in:

  • CLI install flows
  • TUI install flows
  • Web UI install flows

Parallel installs only start after all service variables are collected and confirmed.

Service variants

Run:

ally service variants

Supported examples include:

  • Git forge: GitLab, Gitea, Forgejo
  • Paste: OpenGist, MicroBin, PrivateBin
  • AI UI: AnythingLLM, Open WebUI
  • Search/code intelligence: Zoekt
  • Mail: iRedMail
  • Dashboard/home: Homarr

AI setup

The AI stack supports Modal-backed OpenAI-compatible endpoints through LiteLLM. OpenClaw can be configured to point at LiteLLM automatically.

Relevant config keys:

  • modal.baseUrl
  • modal.imageGenUrl
  • litellm.masterKey
  • litellm.models[]
  • openclaw.gatewayBaseUrl

iRedMail

iRedMail is handled as a first-class special service. This package installs it in its own compose project with dedicated ports, volumes, env, DNS guidance, and backup paths. Mail is opt-in and isolated from the rest of the web stack.

Notes on installation model

This package provides full service modules, generated compose/env/config files, runtime health checks, and lifecycle control. Services are installed with concrete definitions, not TODO scaffolds.

Publish readiness

This package is structured to publish directly to npm. Before publishing, run:

npm install
npm run check

Examples

See:

  • examples/config.example.json
  • examples/credentials.example.json
  • templates/service-variants.md