{"id":26210559,"url":"https://github.com/uwla/starred_repos_organizer","last_synced_at":"2025-04-15T14:05:15.228Z","repository":{"id":222368983,"uuid":"755762729","full_name":"uwla/starred_repos_organizer","owner":"uwla","description":" Organize your starred repositories.","archived":false,"fork":false,"pushed_at":"2024-12-04T13:35:57.000Z","size":1185,"stargazers_count":39,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-15T14:04:56.057Z","etag":null,"topics":["git","github","gitlab","organizer","react","reactjs","repository","stars"],"latest_commit_sha":null,"homepage":"https://uwla.github.io/starred_repos_organizer","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/uwla.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-02-11T00:57:47.000Z","updated_at":"2025-04-11T23:53:13.000Z","dependencies_parsed_at":"2024-03-05T20:26:32.956Z","dependency_job_id":"9f47e8aa-3ffd-4130-b139-92a9385e2f75","html_url":"https://github.com/uwla/starred_repos_organizer","commit_stats":null,"previous_names":["uwla/repo_stars_organizer","uwla/starred_repos_organizer"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uwla%2Fstarred_repos_organizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uwla%2Fstarred_repos_organizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uwla%2Fstarred_repos_organizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uwla%2Fstarred_repos_organizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/uwla","download_url":"https://codeload.github.com/uwla/starred_repos_organizer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249085438,"owners_count":21210267,"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":["git","github","gitlab","organizer","react","reactjs","repository","stars"],"created_at":"2025-03-12T07:29:24.631Z","updated_at":"2025-04-15T14:05:15.210Z","avatar_url":"https://github.com/uwla.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# STARRED REPOS ORGANIZER\n\nOrganizer your starred repositories from various sources.\n\nTable Of Contents:\n\n- [Demo](#demo)\n- [Features](#features)\n- [Usage](#usage)\n- [Development](#development)\n- [Roadmap](#roadmap)\n- [Credits](#credits)\n- [License](#license)\n\n## Demo\n\nA live demo is available at \u003chttps://uwla.github.io/starred_repos_organizer\u003e.\n\n![Starred Repos Organizer Screenshot 1](./assets/starred_repos_organizer_01.png)\n![Starred Repos Organizer Screenshot 2](./assets/starred_repos_organizer_02.png)\n![Starred Repos Organizer Screenshot 3](./assets/starred_repos_organizer_03.png)\n![Starred Repos Organizer Screenshot 4](./assets/starred_repos_organizer_04.png)\n\n## Features\n\n- Star repositories from GitHub, GitLab, Codeberg, self-hosted Gitlab instance,\n  self-hosted Gitea instance (more coming soon)\n- No account needed, save starred repositories locally\n- Import starred repositories from any public user profile on Github or Gitlab\n- Import repositories from JSON file\n- Export repositories to JSON file\n- Export filtered results only to JSON file\n- Modify repository topics by adding new ones or deleting existing\n- More privacy by not exposing your interests to the internet\n- Works offline (except when adding repositories, because it fetches remote data)\n- Can be downloaded as single HTML file to run locally\n- Sort by name, stars or forks\n- Text search and topic filter\n- Display items in list\n- Display items in grid\n- Pagination view\n- Group-by-topics view\n- Dark \u0026 Light themes\n- Persistent user preferences\n\n## Usage\n\nThere are few options (easiest is the first one):\n\n1. Go to the [demo page](https://uwla.github.io/starred_repos_organizer) to use the app.\n2. Download `app.html`from the [latest release](https://github.com/uwla/starred_repos_organizer/releases/tag/v0.0.1-beta).\n3. Download `app.html` from the demo page.\n4. Follow developemnt instructions to launch a local server or build the app locally.\n\n## Development\n\n1. Clone the repo and `cd` into it:\n\n    ```bash\n    git clone https://github.com/uwla/starred_repos_organizer \u0026\u0026 cd starred_repos_organizer\n    cd starred_repos_organizer\n    ```\n\n2. Install dependencies:\n\n    ```bash\n    npm install\n    ```\n\n3. Copy the local sample file `user-data-sample.json` to `user-data.json`:\n\n    ```bash\n    cp user-data-sample.json user-data.json\n    ```\n\n    This is where the data will be stored.\n\n4. Run the scripts:\n\n    To start development server using localStorage for storage:\n\n    ```bash\n    npm run dev\n    ```\n\n    To start development server using an REST server for storage:\n\n    ```bash\n    npm run dev:rest\n    ```\n\n    To build the demo app:\n\n    ```bash\n    npm run build\n    ```\n\n## Roadmap\n\n- [x] Search filter\n- [x] Topics filter\n- [x] Sort repos by name or stars\n- [x] Import all starred repos from public profiles\n- [x] Manual selection when importing repos in batch\n- [x] Display forks, code language, and other details\n- [x] Import data from file\n- [x] Export data to file\n- [x] Export only filtered entries\n- [x] Option to delete all repos\n- [x] Option to delete filtered repos\n- [x] Show notifications on success\n- [x] Manage topics globally\n- [x] Display items in list\n- [x] Display items in grid\n- [x] Group items by topic\n- [x] Support for GitHub\n- [x] Support for GitLab\n- [x] Support for CodeBerg\n- [x] Support for self-hosted GitLab instance\n- [x] Support for self-hosted Gitea instance\n- [ ] Support for self-hosted Gogs instance\n- [x] Option to specify provider type\n- [ ] Option to set auth tokens\n\n## Credits\n\nThanks [Keziah Moselle](https://github.com/KeziahMoselle) for the\ninspiration from his project [export-github-stars](https://github.com/KeziahMoselle/export-github-stars), which export GitHub starred repositories to a JSON file.\n\n## License\n\nMIT.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuwla%2Fstarred_repos_organizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuwla%2Fstarred_repos_organizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuwla%2Fstarred_repos_organizer/lists"}