Installation
Get Centy up and running in your development environment.
Requirements
- Node.js 18 or higher
- pnpm (recommended), npm, or yarn
Install via pnpm (Recommended)
pnpm add -g centy
Run without Installing
You can also run Centy directly without global installation:
pnpm dlx centy init
pnpm dlx centy create issue
Install via npm
npm install -g centy
Install via yarn
yarn global add centy
Verify Installation
After installation, verify that Centy is available:
centy --version
Initialize a Project
Navigate to your project directory and initialize Centy:
cd your-project
centy init
This creates the .centy/ folder structure with default configuration.
Updating Centy
To update to the latest version:
# pnpm (recommended)
pnpm update -g centy
# npm
npm update -g centy
# yarn
yarn global upgrade centy
Uninstalling
To remove Centy from your system:
# pnpm
pnpm remove -g centy
# npm
npm uninstall -g centy
# yarn
yarn global remove centy
Next Steps
After installation, proceed to Configuration to customize Centy for your project.