> For the complete documentation index, see [llms.txt](https://quinck.gitbook.io/multijet/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://quinck.gitbook.io/multijet/getting-started/create-a-project.md).

# Create a project

Get started using Multijet by creating a new project

## Project creation

Creating a new Multijet project is very easy thanks to the **Multijet CLI**.

{% hint style="info" %}
Prerequisites:

* Familiarity with the command line
* [Node.js](https://nodejs.org/it/download/) version 18 or higher
  {% endhint %}

Open a terminal and run the following command to create a new project:

```bash
npx multijet create
```

To build your new project, simply run:

```bash
cd <project-name>
npm run build
```

If the build succeeded, you are ready to start using Multijet in your new project :tada:
