Skip to content

Build an ideas tracker with React

2

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 indobase SDK.

Shell
npm install indobase

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