yarn create — Yarn CLI reference
Create a new package from a starter kit
Docs/Reference/CLI/create
yarn create
Create a new package from a starter kit
yarn create <STARTER> <ARGS…>
This command will use dlx to fetch a package referenced as create-<name> (or @<scope>/create-<name> for scoped packages), then run its bin.
For example:
- `yarn create react-app` → `yarn dlx create-react-app` - `yarn create @scope/app` → `yarn dlx @scope/create-app`
Suppress the install unless it errors