A CLI Utility using the ZyroHub Ecosystem, designed to streamline project creation and management.
You can use the CLI without installing it globally.
# npm
npx @zyrohub/cli createTo install the CLI globally, use one of the following package managers:
# npm
npm install -g @zyrohub/cli
# yarn
yarn global add @zyrohub/cli
# pnpm
pnpm add -g @zyrohub/cli
# bun
bun add -g @zyrohub/cliScaffolds a new project with the ZyroHub ecosystem structure, handling all necessary configurations automatically.
zyrohub create [projectName]The CLI will interactively ask for the following configurations:
- Project Type: Application, Module, or Other.
- Features: Cluster support, DotEnv, Library fields (exports/publishConfig).
- Metadata: Name, Description, Author, Repository.
- Git: Automatic initialization (`git init`).
- Package Manager: NPM, Yarn, PNPM, or Bun.
- Formatting: Prettier configuration.
