Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README.md

gix — TypeScript Implementation

The original Node.js implementation of gix CLI tool.

🚀 Features

  • npm/pnpm package management
  • Quick installation via package manager
  • Familiar JavaScript/TypeScript ecosystem

📦 Installation

Global Installation

npm install -g gix-cli
# or
pnpm add -g gix-cli

From Source

pnpm install
pnpm build

🛠 Development

Run locally

pnpm dev <command>

Build

pnpm build

Watch mode

pnpm dev

📖 Usage

See the main README for detailed usage examples.

🏗 Architecture

  • Entry: src/bin/gix.ts — CLI setup with Commander
  • Commands: src/commands/ — Command implementations
  • Build: tsup bundles to ESM in dist/
  • Dependencies: Commander (CLI), Inquirer (prompts)

🔄 Migration Note

This is the original implementation. For better performance and no runtime dependencies, consider using the Rust version.