> For the complete documentation index, see [llms.txt](https://devworkshops.gitbook.io/masteringvuejs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://devworkshops.gitbook.io/masteringvuejs/beyond-the-basics/creating-our-first-cli-application.md).

# Your First CLI App

## Using the CLI

```
vue create northwind-traders
```

![We're going to manually select features](/files/-Le-PvqSp1HzVsmFKDXz)

![And for now, all we need is Babel and Linter](/files/-Le-QIWpHjZQHQ8eZ57G)

We can run the application now with the commands below:

```
cd northwind-traders
npm run serve
```

![Horay!!!](/files/-LVvvxGt2ugimTxTcdEz)

## Using the UI

We can achieve the very same thing using the Vue UI. Let's give it a try

```
vue ui
```

![The Vue UI should up and running on port 8000](/files/-LVvqrFjSXnm5a37JG2n)

![The Vue UI should open automatically](/files/-LVvrFSivA12Hqgb1J9M)

We'll follow the same steps to create a project as we did through the CLI. Let's click on **Create**

![](/files/-LVvttk54lwzXjf_1P-u)

Then select a path and **Create a new project here**

![](/files/-LVvu-cteu5WVIzx8u6M)

Give it a name and which package manager you want to use

![](/files/-LVvu8LK-76YMDxrWnIv)

We're going to select some manual features and click on **Next**

![](/files/-LVvuHB73ONacU_1hBl8)

We'll keep the default features for now, but it's good to know we could select more here and click **Next**

![](/files/-LVvuNu3MUAz9yDy1BOw)

Finally, let's create the project

![](/files/-LVvul10oZ6q0TID5cm0)

If you want, you can save this preset for later. Since it's just the default, we're going to **Continue without saving**

![](/files/-LVvv-9i3imW7ypENE2B)

And we're done

![](/files/-LVvvPK9-4gIROGNPOmD)

Let's run the application now

![](/files/-LVvwUTrSFtiGt3xdlaV)

![Horay!!! ](/files/-LVvwZbllN-Jc9oJEuY2)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://devworkshops.gitbook.io/masteringvuejs/beyond-the-basics/creating-our-first-cli-application.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
