{"id":23153785,"url":"https://github.com/yuvarajprudhvi/youtube_clone","last_synced_at":"2026-04-11T14:01:50.182Z","repository":{"id":268211474,"uuid":"903655449","full_name":"yuvarajprudhvi/youtube_clone","owner":"yuvarajprudhvi","description":"This YouTube clone is a comprehensive web application that demonstrates modern web development practices, responsive design, and clean architecture. ","archived":false,"fork":false,"pushed_at":"2024-12-15T08:33:58.000Z","size":64,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-03T16:21:11.781Z","etag":null,"topics":["clone-website","frontend","react","react-router","tailwindcss","typescript","vite","youtube","zustand"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yuvarajprudhvi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-12-15T07:30:03.000Z","updated_at":"2024-12-15T08:34:01.000Z","dependencies_parsed_at":"2025-04-04T16:42:26.057Z","dependency_job_id":"5cb518f2-932d-48a5-a0d1-185e81750170","html_url":"https://github.com/yuvarajprudhvi/youtube_clone","commit_stats":null,"previous_names":["yuvarajprudhvi/youtube_clone"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yuvarajprudhvi/youtube_clone","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuvarajprudhvi%2Fyoutube_clone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuvarajprudhvi%2Fyoutube_clone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuvarajprudhvi%2Fyoutube_clone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuvarajprudhvi%2Fyoutube_clone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yuvarajprudhvi","download_url":"https://codeload.github.com/yuvarajprudhvi/youtube_clone/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yuvarajprudhvi%2Fyoutube_clone/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31682953,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T13:07:20.380Z","status":"ssl_error","status_checked_at":"2026-04-11T13:06:47.903Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["clone-website","frontend","react","react-router","tailwindcss","typescript","vite","youtube","zustand"],"created_at":"2024-12-17T20:09:57.528Z","updated_at":"2026-04-11T14:01:50.155Z","avatar_url":"https://github.com/yuvarajprudhvi.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# YouTube Clone\n\nA modern, responsive YouTube clone built with React, TypeScript, and Tailwind CSS. \nThis project demonstrates best practices in React development, state management, and responsive design.\n\n## 🚀 Features\n\n- **Responsive Design**: Fully responsive layout that works on desktop, tablet, and mobile devices\n- **Modern UI**: Clean and modern interface that closely resembles YouTube\n- **Video Playback**: Video player with thumbnail previews\n- **Navigation**: Full navigation system with sidebar and mobile navigation\n- **Comments**: Comment system with the ability to add new comments\n- **Categories**: Video categorization system\n- **Related Videos**: Suggested videos based on current video\n- **State Management**: Global state management using Zustand\n- **TypeScript**: Full TypeScript support for better development experience\n\n## 🛠️ Technologies Used\n\n- React 18\n- TypeScript\n- Tailwind CSS\n- React Router DOM\n- Zustand (State Management)\n- Lucide React (Icons)\n- Vite (Build Tool)\n\n## 📦 Project Structure\n\n```\nsrc/\n├── components/          # Reusable UI components\n│   ├── Category/       # Category-related components\n│   ├── Comments/       # Comment system components\n│   ├── Layout/         # Layout components (Navbar, Sidebar)\n│   └── Video/          # Video-related components\n├── data/               # Mock data and constants\n├── hooks/              # Custom React hooks\n├── pages/              # Page components\n├── store/              # Global state management\n├── types/              # TypeScript type definitions\n└── utils/              # Utility functions\n```\n\n## 🚀 Getting Started\n\n1. **Clone the repository**\n   ```bash\n   git clone https://github.com/yourusername/youtube-clone.git\n   ```\n\n2. **Install dependencies**\n   ```bash\n   cd youtube-clone\n   npm install\n   ```\n\n3. **Start the development server**\n   ```bash\n   npm run dev\n   ```\n\n4. **Build for production**\n   ```bash\n   npm run build\n   ```\n\n## 📱 Responsive Design\n\nThe application is fully responsive with specific optimizations for:\n- Mobile devices (\u003c 768px)\n- Tablets (768px - 1024px)\n- Desktop (\u003e 1024px)\n\nKey responsive features:\n- Mobile navigation bar\n- Collapsible sidebar\n- Adaptive video grid\n- Responsive video player\n- Mobile-optimized search\n\n## 🔑 Key Components\n\n- `App.tsx`: Main application component\n- `Navbar.tsx`: Top navigation bar\n- `Sidebar.tsx`: Main navigation sidebar\n- `VideoGrid.tsx`: Video display grid\n- `VideoPlayer.tsx`: Video playback component\n- `Comments.tsx`: Comment system\n\n## 🎯 Best Practices\n\n- Component-based architecture\n- Custom hooks for reusable logic\n- TypeScript for type safety\n- Responsive design patterns\n- State management with Zustand\n- Code splitting and lazy loading\n- Consistent file and folder structure\n- Clean and maintainable code\n\n## 🔄 State Management\n\nGlobal state is managed using Zustand with the following stores:\n- Video state\n- UI state (sidebar, search)\n- User preferences\n\n## 📱 Mobile Optimization\n\n- Touch-friendly interface\n- Mobile-first navigation\n- Optimized video playback\n- Responsive images\n- Performance optimizations\n\n## 🛠️ Development\n\n### Prerequisites\n- Node.js 16+\n- npm or yarn\n\n### Development Commands\n```bash\n# Start development server\nnpm run dev\n\n# Build for production\nnpm run build\n\n# Preview production build\nnpm run preview\n\n# Run linting\nnpm run lint\n```\n\n## 📝 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## 🙏 Acknowledgments\n\n- Design inspired by YouTube\n- Icons from Lucide React\n- Images from Unsplash\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyuvarajprudhvi%2Fyoutube_clone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyuvarajprudhvi%2Fyoutube_clone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyuvarajprudhvi%2Fyoutube_clone/lists"}