{"id":29132135,"url":"https://github.com/bahihegazi/imgconvert","last_synced_at":"2026-05-09T06:34:42.958Z","repository":{"id":301791767,"uuid":"1010241395","full_name":"bahihegazi/ImgConvert","owner":"bahihegazi","description":"Powerful web app to convert multiple images (PNG, JPG, WEBP) into different formats instantly. Supports drag \u0026 drop, preview, progress bar, and bulk download as ZIP.","archived":false,"fork":false,"pushed_at":"2025-06-28T21:21:33.000Z","size":573,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-28T21:28:27.720Z","etag":null,"topics":["backend","bulk-upload","developer-tool","drag-and-drop","file-converter","frontend","fullstack","html-css","image-converter","image-processing","image-upload","javascript","nodejs","open-source","sharp-js","zip-download"],"latest_commit_sha":null,"homepage":"","language":"CSS","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/bahihegazi.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-06-28T16:46:57.000Z","updated_at":"2025-06-28T21:21:36.000Z","dependencies_parsed_at":"2025-06-28T21:39:08.063Z","dependency_job_id":null,"html_url":"https://github.com/bahihegazi/ImgConvert","commit_stats":null,"previous_names":["bahihegazi/imgconvert"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bahihegazi/ImgConvert","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bahihegazi%2FImgConvert","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bahihegazi%2FImgConvert/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bahihegazi%2FImgConvert/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bahihegazi%2FImgConvert/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bahihegazi","download_url":"https://codeload.github.com/bahihegazi/ImgConvert/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bahihegazi%2FImgConvert/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262720750,"owners_count":23353462,"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":["backend","bulk-upload","developer-tool","drag-and-drop","file-converter","frontend","fullstack","html-css","image-converter","image-processing","image-upload","javascript","nodejs","open-source","sharp-js","zip-download"],"created_at":"2025-06-30T06:16:22.041Z","updated_at":"2026-05-09T06:34:42.913Z","avatar_url":"https://github.com/bahihegazi.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ImgConvert\n\n**ImgConvert** is a simple and powerful image format converter built with Node.js and vanilla JavaScript. It allows users to drag \u0026 drop images (JPG, PNG, WEBP), choose a desired output format, and download converted images either individually or all at once in a ZIP file.\n\n---\n\n## 🌟 Features\n\n- Drag \u0026 drop interface for uploading images.\n- Converts JPG, PNG, and WEBP formats to:\n  - JPG, PNG, WEBP, BMP, TIFF, GIF.\n- Convert single image or batch convert multiple images.\n- Select global output format or per-image format.\n- Download:\n  - Individually (each image after conversion).\n  - All at once (ZIP archive).\n- Auto-removal of uploaded files from the server after 30 minutes.\n- Clean UI with real-time progress bar.\n\n---\n\n## 🚀 Getting Started\n\n### 1. Clone the Repository\n\n```bash\ngit clone https://github.com/bahihegazi/ImgConvert.git\ncd ImgConvert\n```\n\n### 2. Install Dependencies\n\nNavigate to the backend folder and run:\n\n```bash\ncd backend\nnpm install\n```\n\n### 3. Run the Server\n\n```bash\nnode index.js\n```\n\nServer will be running on:\n\n```\nhttp://localhost:3000\n```\n\n---\n\n## 🧪 Usage Instructions\n\n1. Open the app in your browser at `http://localhost:3000`\n2. Drag and drop one or more images into the upload area.\n3. Select the desired output format (globally or per image).\n4. Click **Convert Now** or **Convert All Now**.\n5. Wait for the progress bar to reach 100%.\n6. Download:\n   - For one image: A direct download button will appear.\n   - For multiple images: Download All button will appear.\n7. Each image will also show an individual download icon.\n8. Converted images are automatically deleted from the server after 30 minutes.\n\n---\n\n## 📁 Project Structure\n\n```\nImgConvert/\n├── backend/\n│   ├── uploads/           # Uploaded images (temporary)\n│   ├── converted/         # (optional) for saving outputs (if implemented)\n│   ├── index.js           # Express server logic\n│   ├── package.json\n├── frontend/\n│   ├── css/               # Styles\n│   ├── js/                # Scripts\n│   ├── img/               # Static images/icons\n│   └── index.html         # Main HTML file\n└── .gitignore\n```\n\n---\n\n## 🛡️ Notes\n\n- File size and number of uploads are limited by your system and server config.\n- Make sure port `3000` is available when starting the server.\n- Uses `multer`, `sharp`, and `archiver` for image processing.\n\n---\n\n## 📜 License\n\nThis project is licensed under the MIT License. Feel free to use and modify it.\n\n---","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbahihegazi%2Fimgconvert","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbahihegazi%2Fimgconvert","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbahihegazi%2Fimgconvert/lists"}