Skip to content

Installation

Install Khizab CLI via your package manager.

Package Manager

Install the required package.

bash
pnpm add @khizab/cli
pnpm add @khizab/cli
bash
npm install @khizab/cli
npm install @khizab/cli
bash
yarn add @khizab/cli
yarn add @khizab/cli
bash
bun add @khizab/cli
bun add @khizab/cli

Using Unreleased Commits

If you can't wait for a new release to test the latest features, you can either install from the canary tag (tracks the main branch).

bash
pnpm add @khizab/cli@canary
pnpm add @khizab/cli@canary
bash
npm install @khizab/cli@canary
npm install @khizab/cli@canary
bash
yarn add @khizab/cli@canary
yarn add @khizab/cli@canary
bash
bun add @khizab/cli@canary
bun add @khizab/cli@canary

Or clone the Khizab repo to your local machine, build, and link it yourself.

bash
git clone https://github.com/khizab/khizab.git
cd khizab
pnpm install
pnpm build
cd packages/cli
pnpm link --global
git clone https://github.com/khizab/khizab.git
cd khizab
pnpm install
pnpm build
cd packages/cli
pnpm link --global

Then go to the project where you are using the Khizab CLI and run pnpm link --global @khizab/cli (or the package manager that you used to link Khizab CLI globally).

Released under the MIT License.