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

rgm-installer

v0.2.0

Published

Bootstrap installer for the Remote Git Manager machine agent.

Readme

rgm-installer

Bootstrap installer for the Remote Git Manager machine agent.

This package is meant to be run with npx on the Linux or VPS machine you want to connect to a Remote Git Manager relay.

What it does

  • downloads a prebuilt agent bundle from the release manifest
  • installs it into ~/.remote-git-manager
  • starts the local machine agent
  • connects the machine to your relay URL
  • prints a pairing code so you can claim the machine from the browser

When a user-level systemd environment is available, the installer tries to register rgm-agent.service. If not, it falls back to running the agent as a detached background process.

Quick start

npx -y rgm-installer --relay https://your-relay.example.com

After install, open the hosted dashboard for that relay and claim the pairing code printed by the installer.

Requirements

  • Linux or another Unix-like environment with tar available
  • Node.js new enough for the selected agent release
  • a reachable Remote Git Manager relay URL
  • a valid agent release manifest and release artifact host

Options

--relay <url>          Hosted relay URL to connect this machine to
--install-dir <path>   Install root (default: ~/.remote-git-manager)
--version <version>    Install a specific agent version
--manifest-url <url>   Override the release manifest URL
--no-pair              Skip automatic pairing code generation
--help                 Show help

Examples

Install against a self-hosted Node relay:

npx -y rgm-installer --relay https://relay.example.com

Install a specific agent version:

npx -y rgm-installer --relay https://relay.example.com --version 0.1.1

Use a custom manifest URL:

npx -y rgm-installer \
  --relay https://relay.example.com \
  --manifest-url https://downloads.example.com/agent-manifest.json

Install without generating a pairing code immediately:

npx -y rgm-installer --relay https://relay.example.com --no-pair

Defaults

  • Install directory: ~/.remote-git-manager
  • Default manifest URL: https://github.com/notkainoa/Remote-Git-Manager/releases/latest/download/agent-manifest.json

What gets installed

The installer creates a release-managed layout under the install root:

  • releases/<version> for downloaded runtime bundles
  • current as the active runtime symlink
  • data for machine state
  • logs for local agent logs
  • run for pid and runtime files

After install

If you skipped pairing, you can generate a new code later with:

~/.remote-git-manager/current/bin/rgm pair

To point the machine at a different relay later:

~/.remote-git-manager/current/bin/rgm connect https://your-relay.example.com

Relay-hosted alternative

If your relay exposes the shell wrapper, this does the same bootstrap flow:

curl -fsSL https://your-relay.example.com/install.sh | sh

Source

Repository: https://github.com/notkainoa/Remote-Git-Manager