{"id":18106942,"url":"https://github.com/sagnik-coder24/you-tube","last_synced_at":"2026-04-15T19:41:56.961Z","repository":{"id":259959623,"uuid":"879913945","full_name":"Sagnik-Coder24/You-Tube","owner":"Sagnik-Coder24","description":"React app to search YouTube channels and view top few videos. Uses YouTube API and CSS.","archived":false,"fork":false,"pushed_at":"2024-10-28T19:42:44.000Z","size":509,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T06:46:04.604Z","etag":null,"topics":["css","netlify","reactjs","vite","youtube-api","youtube-channels"],"latest_commit_sha":null,"homepage":"https://you-tube-channel-explore.netlify.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/Sagnik-Coder24.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":"2024-10-28T19:14:32.000Z","updated_at":"2024-10-28T19:42:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"186af1e0-0e4e-4c1e-a59e-f1686136bab9","html_url":"https://github.com/Sagnik-Coder24/You-Tube","commit_stats":null,"previous_names":["sagnik-coder24/you-tube"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Sagnik-Coder24/You-Tube","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagnik-Coder24%2FYou-Tube","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagnik-Coder24%2FYou-Tube/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagnik-Coder24%2FYou-Tube/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagnik-Coder24%2FYou-Tube/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sagnik-Coder24","download_url":"https://codeload.github.com/Sagnik-Coder24/You-Tube/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagnik-Coder24%2FYou-Tube/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265746404,"owners_count":23821645,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["css","netlify","reactjs","vite","youtube-api","youtube-channels"],"created_at":"2024-10-31T23:08:35.326Z","updated_at":"2026-04-15T19:41:56.886Z","avatar_url":"https://github.com/Sagnik-Coder24.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# YouTube Channel Explorer\n\nA React + Vite web application that allows users to search for YouTube channels and view their top N ( users can select the number ) videos. The app uses the YouTube API to fetch data and is styled with CSS.\n\n## Features\n\n- Search for YouTube channels by name\n- View top N videos from a selected channel\n- Responsive design with CSS\n\n## Getting Started\n\n### Prerequisites\n\nMake sure you have the following installed:\n\n- [Node.js](https://nodejs.org/)\n- [Yarn](https://yarnpkg.com/) or [npm](https://www.npmjs.com/)\n- [YouTube Data API Key](https://developers.google.com/youtube/v3/getting-started)\n\n### Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/Sagnik-Coder24/You-Tube.git\n   cd You-Tube\n   ```\n\n2. Install dependencies:\n\n   ```bash\n   yarn install\n   # or\n   npm install\n   ```\n\n### Configuration\n\n1. Set up your YouTube Data API Key:\n\n   - Create a `.env` file in the root directory and add the following environment variable:\n\n   ```env\n   VITE_YOUTUBE_API_KEY=your_youtube_api_key\n   ```\n\n### Running the App\n\n1. Start the development server:\n\n   ```bash\n   yarn dev\n   # or\n   npm run dev\n   ```\n\n2. Open your browser and go to `http://localhost:5173` to see the app in action.\n\n### Deployment\n\n1. **Build the app for production**:\n\n   ```bash\n   yarn build\n   # or\n   npm run build\n   ```\n\n2. **Deploy to Netlify**:\n   - Push your code to a GitHub repository.\n   - Go to [Netlify](https://www.netlify.com/) and log in.\n   - Click on \"New site from Git\" and connect your GitHub account.\n   - Select your repository and configure the build settings:\n     - Build command: `yarn build` or `npm run build`\n     - Publish directory: `dist` (or `build` if you’re using Create React App)\n   - Click \"Deploy site\".\n\nNetlify will automatically build and deploy your site. You can find your live site URL in the Netlify dashboard.\n\n## Usage\n\n1. Enter a YouTube channel name in the search bar.\n2. Click on a channel from the search results to view its top N videos.\n3. Adjust the number of videos displayed using the provided input field.\n\n## Built With\n\n- [React](https://reactjs.org/)\n- [Vite](https://vitejs.dev/)\n- [YouTube Data API](https://developers.google.com/youtube/v3)\n- [CSS](https://developer.mozilla.org/en-US/docs/Web/CSS)\n\n## Contributions\n\nWe welcome contributions from the community! Feel free to open issues and pull requests to suggest improvements, add new features, or fix bugs. Here’s how you can contribute:\n\n1. Fork the repository\n2. Create a new branch (`git checkout -b feature-branch`)\n3. Make your changes\n4. Commit your changes (`git commit -am 'Add some feature'`)\n5. Push to the branch (`git push origin feature-branch`)\n6. Open a pull request\n\n### Suggestions \u0026 Feedback\n\nIf you have suggestions or feedback on how to improve this project, feel free to post them on our [GitHub Issues](https://github.com/Sagnik-Coder24/You-Tube/issues) page. We love hearing your ideas and collaborating with the community!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsagnik-coder24%2Fyou-tube","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsagnik-coder24%2Fyou-tube","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsagnik-coder24%2Fyou-tube/lists"}