{"id":22438790,"url":"https://github.com/gvoze32/notfollow","last_synced_at":"2026-02-18T17:01:32.805Z","repository":{"id":249432498,"uuid":"831409186","full_name":"gvoze32/NotFollow","owner":"gvoze32","description":"A web application to help you identify people who don't follow you back on social media.","archived":false,"fork":false,"pushed_at":"2026-01-11T16:25:19.000Z","size":144,"stargazers_count":3,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-11T18:34:14.891Z","etag":null,"topics":["hacktoberfest","instagram","social-media","tiktok","twitter","unfollow","unfollower","x"],"latest_commit_sha":null,"homepage":"https://notfollow.pages.dev","language":"Astro","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gvoze32.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-07-20T13:16:43.000Z","updated_at":"2026-01-11T16:25:23.000Z","dependencies_parsed_at":"2025-10-09T02:58:25.530Z","dependency_job_id":null,"html_url":"https://github.com/gvoze32/NotFollow","commit_stats":null,"previous_names":["gvoze32/notfollow"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gvoze32/NotFollow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gvoze32%2FNotFollow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gvoze32%2FNotFollow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gvoze32%2FNotFollow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gvoze32%2FNotFollow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gvoze32","download_url":"https://codeload.github.com/gvoze32/NotFollow/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gvoze32%2FNotFollow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29587066,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T16:55:40.614Z","status":"ssl_error","status_checked_at":"2026-02-18T16:55:37.558Z","response_time":162,"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":["hacktoberfest","instagram","social-media","tiktok","twitter","unfollow","unfollower","x"],"created_at":"2024-12-06T01:11:43.944Z","updated_at":"2026-02-18T17:01:32.798Z","avatar_url":"https://github.com/gvoze32.png","language":"Astro","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NotFollow\n\nA modern web application built with Astro to help you identify people who don't follow you back on social media platforms.\n\n## 🚀 Features\n\n- **Multi-Platform Support**: Instagram, TikTok, GitHub, and X (Twitter)\n- **Modern UI**: Beautiful dark mode with glassmorphism effects and smooth animations\n- **Fast Performance**: Built with Astro for optimal loading speeds\n- **Privacy First**: All processing happens client-side - your data never leaves your browser\n- **Pagination**: Efficiently browse through large follower lists\n- **Bulk Actions**: Open multiple profiles at once with confirmation\n- **Responsive Design**: Works perfectly on desktop and mobile devices\n\n## 🎯 Supported Platforms\n\n### ✅ Instagram\n- Upload `followers_*.json` and `following.json` files\n- Robust parsing with fallback mechanisms\n- Normalized profile URLs\n\n### ✅ TikTok\n- Upload single `user_data_tiktok.json` file\n- Shows username and follow date\n- Direct links to TikTok profiles\n\n### ✅ GitHub\n- No file upload required - just enter username\n- Fetches data directly from GitHub API\n- Two modes: Check who doesn't follow you back \u0026 Check who you don't follow back\n- Shows avatar and profile information\n\n### ✅ X (Twitter)\n- Upload `follower.js` and `following.js` files from Twitter data export\n- Parses JavaScript files automatically\n- Links to Twitter profiles\n\n## 🛠️ Tech Stack\n\n- [Astro](https://astro.build) - Web framework with zero JS by default\n- [Tailwind CSS v4](https://tailwindcss.com) - Utility-first CSS framework\n- [TypeScript](https://www.typescriptlang.org) - Type-safe JavaScript\n- Vanilla JavaScript for client-side processing\n\n## 📂 Project Structure\n\n```\n/\n├── public/             # Static assets\n├── src/\n│   ├── components/     # Reusable UI components\n│   │   ├── Navbar.astro\n│   │   └── Footer.astro\n│   ├── layouts/        # Page layouts\n│   │   └── Layout.astro\n│   ├── pages/          # Routes (file-based routing)\n│   │   ├── index.astro      # Homepage\n│   │   ├── instagram.astro  # Instagram checker\n│   │   ├── tiktok.astro     # TikTok checker\n│   │   ├── github.astro     # GitHub checker\n│   │   └── x.astro          # X/Twitter checker\n│   └── styles/         # Global styles\n│       └── global.css\n└── package.json\n```\n\n## 🧞 Commands\n\nAll commands are run from the root of the project, from a terminal:\n\n| Command                   | Action                                           |\n| :------------------------ | :----------------------------------------------- |\n| `npm install`             | Installs dependencies                            |\n| `npm run dev`             | Starts local dev server at `localhost:4321`      |\n| `npm run build`           | Build your production site to `./dist/`          |\n| `npm run preview`         | Preview your build locally, before deploying     |\n| `npm run astro ...`       | Run CLI commands like `astro add`, `astro check` |\n| `npm run astro -- --help` | Get help using the Astro CLI                     |\n\n## 🚦 Getting Started\n\n1. **Install dependencies**\n   ```bash\n   npm install\n   ```\n\n2. **Start development server**\n   ```bash\n   npm run dev\n   ```\n\n3. **Open your browser**\n   Navigate to `http://localhost:4321`\n\n## 📱 How to Use\n\n### Instagram\n\n1. Go to Instagram and download your data:\n   - Profile → Menu (☰) → **Accounts Center**\n   - **Your information and permissions** → **Download your information**\n   - **Download or transfer information** → Select profiles\n   - **Next** → **Some of your information**\n   - Choose **Followers and Following** → **Next**\n   - **Download to device**\n   - Date range: **All time**, Format: **JSON**, Media quality: **Low**\n   - **Create files**\n\n2. Wait for email notification (can take a few hours)\n\n3. Upload the files:\n   - Upload `followers_*.json` files (can be multiple)\n   - Upload `following.json` file\n\n4. Click \"Check Non-Followers\"\n\n### TikTok\n\n1. Download your TikTok data:\n   - Profile → Menu (☰) → **Settings and privacy**\n   - **Account** → **Download your data**\n   - Select **JSON** format\n   - Request and download the file\n\n2. Upload `user_data_tiktok.json` or `user_data.json`\n\n3. Click \"Check Non-Followers\"\n\n### GitHub\n\n1. Simply enter any GitHub username (including your own)\n\n2. Choose your check mode:\n   - **Check who doesn't follow you back**\n   - **Check who you don't follow back**\n\n3. Results are fetched directly from GitHub API\n\n### X (Twitter)\n\n1. Download your X data:\n   - Settings → **Your account** → **Download an archive of your data**\n   - Wait for email with download link\n   - Extract the ZIP file\n\n2. Upload both files:\n   - `follower.js` from the archive\n   - `following.js` from the archive\n\n3. Click \"Check Non-Followers\"\n\n## 🎨 Features\n\n### Pagination\n- Default: 10 items per page\n- Options: 10, 25, 50, 100 items per page\n- Page numbers with ellipsis for large datasets\n- Previous/Next navigation\n\n### Bulk Actions\n- **Open All**: Opens all profiles in separate tabs (with confirmation)\n- Sequential opening with delay to avoid browser popup blocking\n\n### Mark as Unfollowed\n- Checkbox to track who you've unfollowed\n- Visual strikethrough effect\n- Auto-check when clicking profile links\n\n### Dark Mode\n- Default: Dark mode enabled\n- Toggle between light and dark themes\n- Preference saved in localStorage\n- Smooth transitions\n\n## 🔧 Development\n\n### Adding a New Platform\n\n1. Create a new page in `src/pages/[platform].astro`\n2. Copy the structure from an existing platform page\n3. Customize the parsing logic for the platform's JSON format\n4. Update navigation in `src/components/Navbar.astro`\n5. Add platform card in `src/pages/index.astro`\n\n### Customizing the Theme\n\nEdit `src/styles/global.css` for global styles. The project uses Tailwind v4 with custom dark mode variant:\n\n```css\n@custom-variant dark (\u0026:where(.dark, .dark *));\n```\n\nThis enables class-based dark mode instead of media query based.\n\n### Theme Toggle Implementation\n\nTheme is managed in `src/layouts/Layout.astro`:\n- Initial theme set in `\u003chead\u003e` to prevent FOUC\n- Toggle button in `src/components/Navbar.astro`\n- Stored as `color-theme` in localStorage\n\n## 🏗️ Building for Production\n\n```bash\nnpm run build\n```\n\nThe build output will be in `./dist/` directory, ready to deploy to:\n- Netlify\n- Vercel\n- GitHub Pages\n- Cloudflare Pages\n- Any static hosting service\n\n### Deployment Tips\n\n1. All platforms work with static site generation\n2. No server-side processing required\n3. No environment variables needed\n4. Works with any CDN\n\n## 🔒 Privacy \u0026 Security\n\n- **No data storage**: All processing happens in your browser\n- **No external API calls** (except GitHub which uses public API)\n- **No analytics or tracking**: Your activity is completely private\n- **Open source**: Code is transparent and auditable\n- **No authentication required**: No login, no account creation\n\n## 📊 Browser Compatibility\n\n- Chrome/Edge: ✅ Full support\n- Firefox: ✅ Full support\n- Safari: ✅ Full support\n- Mobile browsers: ✅ Full support\n\n## 🐛 Known Limitations\n\n- **Browser popup blockers**: \"Open All\" feature may be limited by browser security\n- **API rate limits**: GitHub API has rate limits (60 requests/hour for unauthenticated)\n- **Large datasets**: Very large follower lists (10,000+) may slow down processing\n\n## 📝 License\n\nThis project is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0). See the LICENSE file for details.\n\n## 🤝 Contributing\n\nContributions are welcome! Please:\n\n1. Fork the repository\n2. Create a 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## 💬 Support\n\nFor support, questions, or feature requests:\n- Open an issue on GitHub\n- Check existing issues for solutions\n\n## 🙏 Acknowledgments\n\n- Thanks to all contributors\n- Built with [Astro](https://astro.build)\n- Styled with [Tailwind CSS](https://tailwindcss.com)\n\n---\n\n**Made with ❤️ for privacy-conscious social media users**","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgvoze32%2Fnotfollow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgvoze32%2Fnotfollow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgvoze32%2Fnotfollow/lists"}