Installation
Requirements
- Node.js 20+ (matches the published package engines)
- npm (or another client that can run
npx)
Install options
Pick one
Use npx for a one-off run, global install for the short bare command, or clone if you are contributing to the generator itself.
bash
npx backend-ai-starter-recipes --helpbash
npm install -g backend-ai-starter-recipes
bare --helpbash
git clone https://github.com/JeelVankhede/backend-ai-starter-recipes.git
cd backend-ai-starter-recipes
npm ci
npm run build
node dist/cli.js --helpVerify
You should see CLI help with options such as --output and --preset:
bash
npx backend-ai-starter-recipes --help
# or, after global install:
bare --helpTroubleshooting
command not found: bare— Install globally or usenpx backend-ai-starter-recipesinstead.- Node version errors — Run
node -v; upgrade to 20+ if needed. - Permission errors on global install — Use a Node version manager or configure npm’s prefix; prefer
npxif unsure.
Next: run it for real — Usage.