Create app
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@14.0.1
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