---
layout: tutorial
title: Create app
description: Create and app with Appwrite Cloud and Vue.js.
step: 2
---

## Create Vue project {% #create-vue-project %}

Create a Vue app with the `npm create` command.

```sh
npm create vite@latest --template vue ideas-tracker && cd ideas-tracker
```

## Add dependencies {% #add-dependencies %}

Install the JavaScript Appwrite SDK.

```sh
npm install appwrite
```

You can start the development server to watch your app update in the browser as you make changes.

```sh
npm run dev -- --open --port 3000
```