# Getting Started

1\. Select your package manager and run the command to create your new project

{% tabs %}
{% tab title="NPM" %}

```bash
npx ult <project>
```

{% endtab %}

{% tab title="Yarn" %}

```bash
yarn dlx ult <project>
```

{% endtab %}
{% endtabs %}

2\. Choose a task from the table below to run with your selected package manager

{% tabs %}
{% tab title="NPM" %}

```bash
npm run <task>
```

{% endtab %}

{% tab title="Yarn" %}

```bash
yarn run <task>
```

{% endtab %}
{% endtabs %}

| Task          | Description                    |
| ------------- | ------------------------------ |
| web           | Start development on Web       |
| android       | Start development on Android   |
| ios           | Start development on iOS       |
| macos         | Start development on MacOS     |
| windows       | Start development on Windows   |
| build-web     | Build a production Web bundle  |
| build-android | Build a production Android app |
| build-ios     | Build a production iOS app     |
| build-macos   | Build a production MacOS app   |
| build-windows | Build a production Windows app |
