---
id: docs_cli_create
guide: docs_cli
layout: guide
---
{% include vars.html %}
Creates new projects from any create-* starter kits.
##### `yarn create []`
This command is a shorthand that helps you do two things at once:
- Install `create-` globally, or update the package to the
latest version if it already exists
- Run the `create-` executable located in the `bin` field of the starter kit’s `package.json`,
forwarding any `` to it
For example, `yarn create react-app my-app` is equivalent to:
```sh
$ yarn global add create-react-app
$ create-react-app my-app
```
For more information, check out the [relevant blog entry](https://yarnpkg.com/blog/2017/05/12/introducing-yarn/).