docs >installation

Installation

Basic Installation

Install Scaffa using the following command:

npx create-scaffa@latest

and then follow the prompt instructions.

Project Name

You can specify a project name during installation:

npx create-scaffa@latest my-project

Template Selection

Choose a template using the -t or -template flag:

npx create-scaffa@latest -t react

Package Manager

Select a package manager using -p or -package flag:

Available options: npm or pnpm

npx create-scaffa@latest -p pnpm

Complete Example

Combining all options:

npx create-scaffa@latest my-project -t react -p pnpm