Advanced Usage

Arguments

ArgumentDescription
dirThe name of the application, as well as the name of the directory to create

Options

Package Manager Options

OptionDescription
--pnpmUse pnpm as the package manager
--yarnUse yarn as the package manager
--npmUse npm as the package manager

Framework Options

OptionDescription
--react [number]Add React apps to your Super Turbo. If number is specified, creates that many apps
--next [number]Add Next.js apps to your Super Turbo. If number is specified, creates that many apps
--express [number]Add Express apps to your Super Turbo. If number is specified, creates that many apps

General Options

OptionDescription
-v, --versionDisplay the version number
-h, --helpDisplay help for the command
--noGitExplicitly tell the CLI to not initialize a new git repo in the project
--noInstallExplicitly tell the CLI to not run the package manager's install command
-y, --defaultBypass the CLI and use all default options to bootstrap a new super-turbo-app

Examples

# Create a project with 3 React apps
npx create-super-turbo my-app --react 3

# Create a project with 2 Next.js apps and 1 Express app
npx create-super-turbo my-app --next 2 --express 1

# Create a project with default React setup using pnpm
npx create-super-turbo my-app --react --pnpm