this was assigned to this email
A simple Todo application built with React and Vite, using DummyJSON as a backend API.
Live demo: https://todo-app-assign.vercel.app/
- Node.js (v14 or higher)
- npm or yarn
git clone https://github.com/ManziPatrick/React-Technical-Assignment.git
cd React-Technical-Assignmentnpm install
# or
yarn installCreate a .env file in the root directory and add:
REACT_APP_API_BASE_URL=https://dummyjson.com
To start the development server:
npm run dev
# or
yarn devThe application will be available at http://localhost:5173
To create a production build:
npm run build
# or
yarn buildTo preview the production build locally:
npm run preview
# or
yarn previewThe project uses Jest for testing. Here are the available test commands:
npm test
# or
yarn testnpm run test:watch
# or
yarn test:watchnpm run test:coverage
# or
yarn test:coverageRun the linter to check for code style issues:
npm run lint
# or
yarn lintThis project is deployed on Vercel. To deploy your own instance:
- Create a Vercel account if you haven't already
- Connect your repository to Vercel
- Configure the environment variables in Vercel dashboard
- Deploy!
The application will automatically deploy when changes are pushed to the main branch.



