Skip to content

Latest commit

 

History

History
63 lines (43 loc) · 1.08 KB

File metadata and controls

63 lines (43 loc) · 1.08 KB

Installation

There are several ways to install and run gh-manager-cli:

NPX (Recommended - No Installation Required)

Run instantly without installing:

npx gh-manager-cli

NPM Global Install

Install globally for persistent gh-manager-cli command:

npm install -g gh-manager-cli
gh-manager-cli

Pre-built Binaries (No Node.js Required)

Download standalone executables from GitHub Releases:

  • Linux: gh-manager-cli-linux-x64
  • macOS: gh-manager-cli-macos-x64
  • Windows: gh-manager-cli-windows-x64.exe

Make the binary executable (Linux/macOS):

chmod +x gh-manager-cli-*
./gh-manager-cli-*

From Source

Prerequisites:

  • Node.js 18+
  • pnpm

Install and build:

pnpm install
pnpm build

Run locally:

node dist/index.js
# Or add to PATH for dev
pnpm link
gh-manager-cli

Next Steps