{"id":25629835,"url":"https://github.com/ankush-nitjsr/interactive-quiz","last_synced_at":"2026-06-17T03:32:16.136Z","repository":{"id":278206270,"uuid":"934845797","full_name":"Ankush-nitjsr/interactive-quiz","owner":"Ankush-nitjsr","description":"The Interactive Quiz is a web application built with ReactJS that allows users to take quizzes, receive instant feedback, and track their progress. This project aims to provide an engaging and user-friendly experience for quiz enthusiasts, educators, and anyone looking to test their knowledge on various topics.","archived":false,"fork":false,"pushed_at":"2025-03-02T18:28:51.000Z","size":129,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-02T19:30:57.141Z","etag":null,"topics":["indexeddb","react-hooks","react-router-dom","reactjs","tailwind-css","vercel"],"latest_commit_sha":null,"homepage":"https://interactive-quiz-nine.vercel.app","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ankush-nitjsr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-18T13:54:14.000Z","updated_at":"2025-03-02T18:28:54.000Z","dependencies_parsed_at":"2025-02-18T15:51:40.057Z","dependency_job_id":null,"html_url":"https://github.com/Ankush-nitjsr/interactive-quiz","commit_stats":null,"previous_names":["ankush-nitjsr/interactive-quiz"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Ankush-nitjsr/interactive-quiz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ankush-nitjsr%2Finteractive-quiz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ankush-nitjsr%2Finteractive-quiz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ankush-nitjsr%2Finteractive-quiz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ankush-nitjsr%2Finteractive-quiz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ankush-nitjsr","download_url":"https://codeload.github.com/Ankush-nitjsr/interactive-quiz/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ankush-nitjsr%2Finteractive-quiz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34433085,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-17T02:00:05.408Z","response_time":127,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["indexeddb","react-hooks","react-router-dom","reactjs","tailwind-css","vercel"],"created_at":"2025-02-22T19:17:44.035Z","updated_at":"2026-06-17T03:32:16.119Z","avatar_url":"https://github.com/Ankush-nitjsr.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Interactive Quiz Application\n\n## Table of Contents\n\n- [Overview](#overview)\n- [Features](#features)\n- [Technologies Used](#technologies-used)\n- [Folder Structure](#folder-structure)\n- [Getting Started](#getting-started)\n- [Deployment](#deployment)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Overview\n\nThe **Interactive Quiz App** is a web application built with ReactJS that allows users to take quizzes, receive instant feedback, and track their progress. This project provides an engaging and user-friendly experience for quiz enthusiasts, educators, and anyone looking to test their knowledge on various topics.\n\n## Features\n\n- **Quiz Creation \u0026 Management**:\n\n  - Display a list of questions in a quiz format, sourced from an uploaded file.\n  - Allow users to attempt quizzes multiple times to improve their scores.\n  - Show attempt history, including past scores and correct/incorrect answers, for users to track their progress.\n\n- **User Interaction**:\n\n  - Users can select answers and receive instant feedback on their choices (e.g., green for correct, red for incorrect).\n  - Implement timer-based quizzes, giving users a limited time (e.g., 30 seconds) per question to simulate a real-time quiz experience.\n\n- **Progress Tracking**:\n\n  - Display a scoreboard at the end of each quiz, showing the user's score, total correct/incorrect answers, and overall performance.\n\n- **Quiz Attempt History**:\n  - Save quiz history using IndexedDB for persistent storage across sessions, allowing users to revisit their past attempts.\n\n## Technologies Used\n\n- **Frontend**: ReactJS, React Router, TailwindCSS\n- **State Management**: React Hooks\n- **Data Storage**: IndexedDB\n- **Deployment**: Vercel\n\n## Folder Structure\n\n```bash\ninteractive-quiz/\n│── public/\n│── src/\n│   ├── assets/              # For images, icons, etc.\n│   ├── components/          # Reusable components\n|   |   ├── footer\n|   |   |    ├── Footer.jsx\n|   |   ├── header\n|   |   |    ├── Header.jsx\n|   |   ├── ui\n|   |   |    ├── OptionButton.jsx\n│   │   ├── QuizCard.jsx\n│   │   ├── Timer.jsx\n│   │   ├── Scoreboard.jsx\n│   │   ├── History.jsx\n│   ├── data/             # Questions data\n│   │   ├── quizData.json\n│   ├── hooks/             # Custome hook\n│   │   ├── useFetchQuizData.js\n│   ├── pages/               # Page components\n│   │   ├── Home.jsx\n│   │   ├── QuizPage.jsx\n│   │   ├── HistoryPage.jsx\n│   ├── stores/             # Zustand store\n│   │   ├── useQuizStore.js\n│   ├── utils/               # Utility functions\n│   │   ├── calculateTotalScore.js\n│   ├── App.jsx\n│   ├── main.jsx\n│   ├── index.css\n│   ├── App.css\n│── index.html\n│── README.md\n│── package-lock.json\n│── package.json\n│── .gitignore\n│── vite.config.js\n│── eslint.config.js\n```\n\n## Getting Started\n\nTo run the application locally, follow these steps:\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/Ankush-nitjsr/interactive-quiz\n   cd interactive-quiz\n   ```\n\n2. Install the dependencies:\n\n   ```bash\n   npm install\n   ```\n\n3. Start the development server:\n\n   ```bash\n   npm run dev\n   ```\n\n4. Open your browser and navigate to http://localhost:5173 to view the application.\n\n## Deployment\n\nThe application is deployed on [Vercel](https://interactive-quiz-nine.vercel.app/). You can access the live version of the quiz platform using the link below:\n\n- [Live Demo](https://interactive-quiz-nine.vercel.app/)\n\n## Contributing\n\nContributions are welcome! If you have suggestions for improvements or new features, feel free to open an issue or submit a pull request.\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fankush-nitjsr%2Finteractive-quiz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fankush-nitjsr%2Finteractive-quiz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fankush-nitjsr%2Finteractive-quiz/lists"}