{"id":23096758,"url":"https://github.com/shaileshkale17/coding-round-generator","last_synced_at":"2026-04-17T12:33:28.697Z","repository":{"id":266740058,"uuid":"899216066","full_name":"Shaileshkale17/Coding-Round-Generator","owner":"Shaileshkale17","description":"Web app built with the MERN stack to generate coding challenges. Customize tasks by technology, difficulty, and topic. Ideal for developers practicing interviews or sharpening skills with randomized, tailored challenges","archived":false,"fork":false,"pushed_at":"2024-12-16T13:50:31.000Z","size":339,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-16T02:06:02.585Z","etag":null,"topics":["javascript","mern-stack","react-router","reactjs","system-design"],"latest_commit_sha":null,"homepage":"https://coding-round-generator.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/Shaileshkale17.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,"zenodo":null}},"created_at":"2024-12-05T20:45:10.000Z","updated_at":"2025-03-09T11:10:05.000Z","dependencies_parsed_at":"2024-12-05T21:31:17.861Z","dependency_job_id":"9a42d4e6-9ec2-4682-bb3c-da06f58d113f","html_url":"https://github.com/Shaileshkale17/Coding-Round-Generator","commit_stats":null,"previous_names":["shaileshkale17/coding-round-generator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Shaileshkale17/Coding-Round-Generator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shaileshkale17%2FCoding-Round-Generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shaileshkale17%2FCoding-Round-Generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shaileshkale17%2FCoding-Round-Generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shaileshkale17%2FCoding-Round-Generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Shaileshkale17","download_url":"https://codeload.github.com/Shaileshkale17/Coding-Round-Generator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shaileshkale17%2FCoding-Round-Generator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31929749,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T10:35:34.458Z","status":"ssl_error","status_checked_at":"2026-04-17T10:35:09.472Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["javascript","mern-stack","react-router","reactjs","system-design"],"created_at":"2024-12-16T22:48:13.700Z","updated_at":"2026-04-17T12:33:28.668Z","avatar_url":"https://github.com/Shaileshkale17.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Coding Round Generator\n\nA web-based application built using the MERN stack (MongoDB, Express.js, React.js, Node.js) that allows users to generate coding challenges for different technologies, difficulty levels, and topics. This project helps software developers practice coding interviews and challenges by providing a randomized task generator with customizable filters.\n\n## Features\n\n- **Challenge Filters**:\n\n  - Technology (Python, JavaScript, MERN Stack, etc.)\n  - Difficulty (Easy, Medium, Hard)\n  - Topic (Algorithms, Data Structures, CRUD, etc.)\n\n- **Randomized Task Generator**: Based on selected filters, a random coding challenge will be displayed.\n\n- **Task Details**: Shows challenge description, tags, and estimated time to complete.\n\n- **Modern UI**: Built with React.js for a smooth user experience.\n\n## Technologies Used\n\n- **Frontend**:\n  - React.js\n  - Redux (for state management, if applicable)\n  - Axios (for API calls)\n  - CSS/SCSS (for styling)\n- **Backend**:\n  - Node.js\n  - Express.js\n  - MongoDB (to store tasks and user data)\n\n## Getting Started\n\nFollow these steps to get a copy of the project up and running on your local machine.\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/en/download/) - JavaScript runtime environment\n- [MongoDB](https://www.mongodb.com/try/download/community) - Database to store coding tasks and user data (local or cloud)\n- [npm](https://www.npmjs.com/) - Node package manager\n\n### Installation\n\n1. **Clone the repository:**\n\n   ```bash\n   git clone https://github.com/your-username/coding-round-generator.git\n   cd coding-round-generator\n   ```\n\n2. **Install backend dependencies:**\n\n   ```bash\n   cd backend\n   npm install\n   ```\n\n3. **Set up MongoDB:**\n\n   - Create a `config.env` file in the backend directory with the following variables:\n\n     ```\n     MONGO_URI=your_mongodb_connection_string\n     PORT=5000\n     ```\n\n   - If you're using MongoDB Atlas, get your connection string from the [MongoDB Atlas Dashboard](https://www.mongodb.com/cloud/atlas).\n\n4. **Install frontend dependencies:**\n\n   ```bash\n   cd ../frontend\n   npm install\n   ```\n\n5. **Run the Application**\n\n   - Start the backend server:\n\n     ```bash\n     cd backend\n     npm start\n     ```\n\n   - Start the frontend development server:\n\n     ```bash\n     cd frontend\n     npm start\n     ```\n\n   Your app should now be running at `http://localhost:3000` for the frontend and `http://localhost:5000` for the backend.\n\n### Usage\n\n- When the application starts, you’ll see a form with options to select technology, difficulty, and topic.\n- Select your filters and click \"Generate\" to see a random coding task based on your selection.\n- The task will show its title, description, tags, and estimated completion time.\n\n### Example API (Backend)\n\nThe backend provides an API to get coding tasks:\n\n- **GET /api/tasks** - Fetch all tasks\n- **GET /api/tasks/random** - Fetch a random task based on selected filters\n- **POST /api/tasks** - Add a new task to the database (for admin or developer use)\n\n## Folder Structure\n\n```\ncoding-round-generator/\n├── backend/\n│   ├── controllers/           # Contains logic to handle API requests\n│   ├── models/                # Database models for MongoDB\n│   ├── routes/                # API routes\n│   ├── config/                # Configuration files (e.g., MongoDB URI)\n│   ├── server.js              # Backend entry point (Express app)\n│   └── package.json           # Backend dependencies\n├── frontend/\n│   ├── src/\n│   │   ├── components/        # Reusable React components\n│   │   ├── pages/             # React pages (Home, Task details)\n│   │   ├── App.js             # Main entry point for React\n│   │   ├── index.js           # React DOM rendering\n│   │   └── package.json       # Frontend dependencies\n├── README.md                  # Project documentation\n└── .gitignore                 # Git ignore file\n```\n\n## Deployment\n\n### Deploying to Heroku\n\n1. **Create a Heroku account** and [install the Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli).\n2. **Create a new app** on Heroku:\n\n   ```bash\n   heroku create coding-round-generator\n   ```\n\n3. **Add environment variables** for MongoDB URI:\n\n   ```bash\n   heroku config:set MONGO_URI=your_mongodb_connection_string\n   ```\n\n4. **Push your code to Heroku**:\n\n   ```bash\n   git push heroku master\n   ```\n\n5. **Open the app**:\n\n   ```bash\n   heroku open\n   ```\n\n## Contributing\n\nContributions are welcome! If you'd like to contribute, please fork the repository, create a new branch, and submit a pull request.\n\n### Bug Fixes and Features\n\n- Report issues via GitHub issues page.\n- Submit pull requests for enhancements, bug fixes, or features.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshaileshkale17%2Fcoding-round-generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshaileshkale17%2Fcoding-round-generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshaileshkale17%2Fcoding-round-generator/lists"}