Skip to content

Build an ideas tracker with Vue.js

2

Create Vue project

Create a Vue app with the npm create command.

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

Add dependencies

Install the JavaScript Appwrite SDK.

Shell
npm install appwrite

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

Shell
npm run dev -- --open --port 3000