Skip to content

Installation

stacks needs Node.js 20.19 or later. The CLI has no dependencies of its own: it is plain Node, with nothing to build. The generated projects have their own requirements (Yarn 4 through Corepack, Docker, Python 3.14 for py-worker), listed on each template’s page.

Run it once without installing:

Terminal window
npx @aurostack/stacks new nest-api ./api

Or keep the stack command around:

Terminal window
npm install -g @aurostack/stacks
stack --version

Update with npm install -g @aurostack/stacks@latest. The package contains the CLI and the templates, and nothing else.

Template Needs on your machine
nest-api Node 24, Yarn 4 (corepack enable), Docker (for local Postgres and Redis)
react-app, react-monorepo Node 24, Yarn 4
node-worker Node 24, Yarn 4; the API’s Postgres and Redis
py-worker Python 3.14; the API’s Postgres and Redis

Generation runs yarn install (or creates a Python virtualenv) for you. If a tool is missing, generation still finishes: the install step warns and you run it yourself afterwards. See Your first project.