{"id":23196246,"url":"https://github.com/andrewsuzuki/imgur-uploader","last_synced_at":"2026-05-01T16:36:50.113Z","repository":{"id":268198932,"uuid":"903621385","full_name":"andrewsuzuki/imgur-uploader","owner":"andrewsuzuki","description":"Simple CLI tool for uploading local images to Imgur. Supports albums and linking to an account. Dependency-free.","archived":false,"fork":false,"pushed_at":"2024-12-15T17:30:35.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T08:29:30.726Z","etag":null,"topics":["cli","deno","image","imgur","javascript","nodejs","script"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/andrewsuzuki.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-15T04:52:27.000Z","updated_at":"2024-12-15T17:30:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"e0472694-d78f-4f7f-abc6-b4206b76da63","html_url":"https://github.com/andrewsuzuki/imgur-uploader","commit_stats":null,"previous_names":["andrewsuzuki/imgur-uploader"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/andrewsuzuki/imgur-uploader","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrewsuzuki%2Fimgur-uploader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrewsuzuki%2Fimgur-uploader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrewsuzuki%2Fimgur-uploader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrewsuzuki%2Fimgur-uploader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andrewsuzuki","download_url":"https://codeload.github.com/andrewsuzuki/imgur-uploader/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrewsuzuki%2Fimgur-uploader/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32505110,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["cli","deno","image","imgur","javascript","nodejs","script"],"created_at":"2024-12-18T14:17:30.356Z","updated_at":"2026-05-01T16:36:50.100Z","avatar_url":"https://github.com/andrewsuzuki.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# imgur-uploader\n\nSimple CLI tool for uploading local images to Imgur.\n- Add images to a new or existing album (optional)\n- Link images and albums to account (recommended) or anonymous\n- Dependency-free\n\nImgur is still one of the most reliable free image hosts in 2024. It's my go-to when sharing photosets on forums.\nHowever, the new web interface is bad. There's no upload progress indicator. When uploading many (30+) images at a time, it seems to send all the requests in parallel, which bugs out and results in front-end and API errors. This tool sends them sequentially.\n\n## Usage\n\nRequires [Node](https://nodejs.org) 18+ or [Deno](https://deno.com).\n\n```sh\n# With NPX\n# Upload image (anonymous)\nnpx github:andrewsuzuki/imgur-uploader --client-id CLIENT_ID foo.jpg\n# Upload image (account)\nnpx github:andrewsuzuki/imgur-uploader --access-token ACCESS_TOKEN foo.jpg\n# Upload multiple images, then add them to a new album (account)\nnpx github:andrewsuzuki/imgur-uploader --access-token ACCESS_TOKEN --create-album path/to/images/*.jpg\n# Upload multiple images, then add them to a new album, with a title (account)\nnpx github:andrewsuzuki/imgur-uploader --access-token ACCESS_TOKEN --create-album --album-title \"My Photo Album\" path/to/images/*.jpg\n# Upload multiple images, then add them to an existing album (account only)\nnpx github:andrewsuzuki/imgur-uploader --access-token ACCESS_TOKEN --update-album ALBUM_ID path/to/images/*.jpg\n\n# With global npm install\nnpm install -g github:andrewsuzuki/imgur-uploader\nimgur-uploader ...\n\n# With Deno\ndeno run --allow-read --allow-net https://raw.githubusercontent.com/andrewsuzuki/imgur-uploader/refs/heads/main/imgur-uploader.js ...\n```\n\n### Authorization\n\nTo use, you must register an application [here](https://imgur.com/account/settings/apps) (choose \"OAuth 2 authorization without a callback URL\").\n\nIt will then give you a client ID (view your registered apps [here](https://imgur.com/account/settings/apps)). You can use this to upload images anonymously with `--client-id` (not recommended; higher risk of future deletion).\n\nIf you want to attach the images and albums to your account (recommended), you must go through the OAuth 2 authorization flow available from Imgur [here](https://api.imgur.com/oauth2/authorize?response_type=token\u0026client_id=CLIENT_ID) (replace CLIENT_ID with your client ID).\n\nAfter authorizing, it will redirect you to a URL like this: https://imgur.com/#access_token=ACCESS_TOKEN\u0026expires_in=...\n\nExtract the ACCESS_TOKEN from the URL, then you can use the tool with `--access-token`.\n\n## Alternatives\n\n- [tremby/imgur.sh](https://github.com/tremby/imgur.sh) bash, only anonymous uploads, no album support\n- [FigBug/imguru](https://github.com/FigBug/imguru) C++ binary, only anonymous uploads, no album support\n\n## Misc\n\nIf you want to delete an image uploaded anonymously or with an account, you can navigate to https://imgur.com/delete/DELETEHASH (replace DELETEHASH with the image's deletehash).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewsuzuki%2Fimgur-uploader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrewsuzuki%2Fimgur-uploader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrewsuzuki%2Fimgur-uploader/lists"}