Create app

Create React project

Create a React app with the npm create command.

Shell
npm create vite@latest -- --template react 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