The original Node.js implementation of gix CLI tool.
- npm/pnpm package management
- Quick installation via package manager
- Familiar JavaScript/TypeScript ecosystem
npm install -g gix-cli
# or
pnpm add -g gix-clipnpm install
pnpm buildpnpm dev <command>pnpm buildpnpm devSee the main README for detailed usage examples.
- 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)
This is the original implementation. For better performance and no runtime dependencies, consider using the Rust version.