{"id":30305440,"url":"https://github.com/happyhackingspace/githubmon","last_synced_at":"2025-08-17T08:09:37.697Z","repository":{"id":303216873,"uuid":"1011851861","full_name":"HappyHackingSpace/githubmon","owner":"HappyHackingSpace","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-08T15:03:58.000Z","size":635,"stargazers_count":3,"open_issues_count":7,"forks_count":4,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-08T15:32:21.611Z","etag":null,"topics":["hacktoberfest"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/HappyHackingSpace.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":"2025-07-01T12:36:12.000Z","updated_at":"2025-08-08T15:04:02.000Z","dependencies_parsed_at":"2025-07-06T12:25:49.511Z","dependency_job_id":"4afac91f-915e-4700-b89d-325fb060f0b0","html_url":"https://github.com/HappyHackingSpace/githubmon","commit_stats":null,"previous_names":["happyhackingspace/githubmon"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/HappyHackingSpace/githubmon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HappyHackingSpace%2Fgithubmon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HappyHackingSpace%2Fgithubmon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HappyHackingSpace%2Fgithubmon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HappyHackingSpace%2Fgithubmon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HappyHackingSpace","download_url":"https://codeload.github.com/HappyHackingSpace/githubmon/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HappyHackingSpace%2Fgithubmon/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270820793,"owners_count":24651534,"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","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"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":["hacktoberfest"],"created_at":"2025-08-17T08:09:37.037Z","updated_at":"2025-08-17T08:09:37.679Z","avatar_url":"https://github.com/HappyHackingSpace.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHubMon\n\nA powerful platform to analyze GitHub organizations, trending repositories, top contributors, and more.  \nEasily search for repositories, users, and organizations with advanced analytics and a user-friendly interface.\n\n## Features\n\n- 🔍 Fast search for repositories, users, and organizations\n- 📊 Organization analytics and statistics\n- 🏆 Trending repositories and top contributors\n- 🌗 Light/Dark theme support\n- 📝 Personal Access Token login for higher API rate limits\n- 🕒 Search history and recent searches\n- ⚡ Dashboard and customizable settings\n\n## Getting Started\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/) (v16 or higher recommended)\n- npm, yarn, pnpm, or bun\n\n### Installation\n\n1. Clone the repository:\n   ```sh\n   git clone https://github.com/your-username/githubmon.git\n   cd githubmon\n   ```\n\n2. Install dependencies:\n   ```sh\n   npm install\n   # or\n   yarn install\n   # or\n   pnpm install\n   # or\n   bun install\n   ```\n\n3. Set up environment variables:\n   ```sh\n   cp .env.example .env.local\n   ```\n   \n   Edit `.env.local` and fill in the required values:\n   - `GITHUB_CLIENT_ID` - Your GitHub OAuth App Client ID\n   - `GITHUB_CLIENT_SECRET` - Your GitHub OAuth App Client Secret\n   - `NEXTAUTH_SECRET` - A random secret for NextAuth.js\n   - `NEXTAUTH_URL` - Your application URL (http://localhost:3000 for development)\n\n4. Start the development server:\n   ```sh\n   npm run dev\n   # or\n   yarn dev\n   # or\n   pnpm dev\n   # or\n   bun dev\n   ```\n\n5. Open [http://localhost:3000](http://localhost:3000) in your browser.\n\n### Environment Variables Setup\n\nThis application requires GitHub OAuth for authentication. Follow these steps:\n\n#### 1. Create a GitHub OAuth App\n\n1. Go to [GitHub Developer Settings](https://github.com/settings/applications/new)\n2. Create a new OAuth App with these settings:\n   - **Application name**: GitHubMon (or your preferred name)\n   - **Homepage URL**: `http://localhost:3000` (for development)\n   - **Application description**: Optional description\n   - **Authorization callback URL**: `http://localhost:3000/api/auth/callback/github`\n\n3. After creating the app, copy the **Client ID** and **Client Secret**\n\n#### 2. Configure Environment Variables\n\nCopy `.env.example` to `.env.local` and update the values:\n\n```bash\n# Required - Get these from your GitHub OAuth App\nGITHUB_CLIENT_ID=your_github_client_id_here\nGITHUB_CLIENT_SECRET=your_github_client_secret_here\n\n# Required - Generate a random secret\nNEXTAUTH_SECRET=your_random_secret_here\n\n# Required - Your app URL\nNEXTAUTH_URL=http://localhost:3000\n```\n\nTo generate a secure `NEXTAUTH_SECRET`, you can use:\n```bash\nopenssl rand -base64 32\n```\n\n#### 3. OAuth Scopes\n\nThe application requests these minimal GitHub scopes:\n- `read:user` - Read basic user profile information\n- `user:email` - Access user email addresses  \n- `public_repo` - Read-only access to public repositories\n\nThese scopes follow the principle of least privilege and provide secure access without unnecessary permissions.\n\n## Usage\n\n- You can use the app without a GitHub token, but rate limits will be low (60 requests/hour).\n- For full features and higher limits (5,000 requests/hour), log in with your [GitHub Personal Access Token](https://github.com/settings/tokens).\n- To generate a token:\n  1. Go to GitHub → Settings → Developer settings → Personal access tokens\n  2. Click \"Generate new token (classic)\"\n  3. Select required scopes (e.g., `repo`, `user`)\n  4. Copy and save your token securely\n\n## Settings\n\n- Change organization/user name and token anytime from the Settings page.\n- Switch between light and dark themes.\n- Clear all local data with one click.\n\n## Security\n\n- Your token is stored only in your browser (local storage).\n- It is never sent to any server.\n- Tokens are automatically deleted after 1 month.\n- You can log out anytime.\n\n## Contributing\n\nContributions are welcome! Please open an issue or submit a pull request.\n\n## License\n\nMIT  ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhappyhackingspace%2Fgithubmon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhappyhackingspace%2Fgithubmon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhappyhackingspace%2Fgithubmon/lists"}