Skip to content

Installation

Intend is distributed as an NPM package. You can install it globally or per-project.

Prerequisites

  • Node.js: Version 18 or higher.
  • Package Manager: npm, yarn, pnpm, or bun.

Global Installation

Installing globally allows you to use the intend command anywhere on your system.

bash
npm install -g @intend-it/cli
# or
bun add -g @intend-it/cli

Local Installation

You can also install Intend as a dev dependency in your project. This is recommended to ensure everyone on your team uses the same version.

bash
npm install --save-dev @intend-it/cli

You can then run commands using npx (or bunx):

bash
npx intend build

Released under the MIT License.