{"id":30229560,"url":"https://github.com/pguso/cleansweep","last_synced_at":"2026-04-13T17:32:01.404Z","repository":{"id":307506576,"uuid":"1029743464","full_name":"pguso/cleansweep","owner":"pguso","description":"A lightweight macOS desktop app built with Tauri (Rust + React) to scan folders, analyze disk usage, and safely move files to trash.","archived":false,"fork":false,"pushed_at":"2025-07-31T14:37:35.000Z","size":248,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-14T21:54:45.033Z","etag":null,"topics":["react","rust","tarui-app","tauri2"],"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/pguso.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-31T13:59:25.000Z","updated_at":"2025-07-31T14:38:08.000Z","dependencies_parsed_at":"2025-07-31T18:27:56.645Z","dependency_job_id":null,"html_url":"https://github.com/pguso/cleansweep","commit_stats":null,"previous_names":["pguso/cleansweep"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/pguso/cleansweep","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pguso%2Fcleansweep","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pguso%2Fcleansweep/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pguso%2Fcleansweep/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pguso%2Fcleansweep/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pguso","download_url":"https://codeload.github.com/pguso/cleansweep/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pguso%2Fcleansweep/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31762494,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T15:25:13.801Z","status":"ssl_error","status_checked_at":"2026-04-13T15:25:09.162Z","response_time":93,"last_error":"SSL_read: 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":["react","rust","tarui-app","tauri2"],"created_at":"2025-08-14T21:39:26.980Z","updated_at":"2026-04-13T17:32:01.382Z","avatar_url":"https://github.com/pguso.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🧹 CleanSweep – A Disk Cleanup App Built with Tauri, Rust, and React\n\nCleanSweep is a lightweight and blazing-fast macOS desktop app built with [Tauri](https://tauri.app), leveraging a **Rust** backend and a **React + TailwindCSS** frontend.\n\nRelated article 👉 [Develop a Desktop App with Tauri: Scan \u0026 Clean Your Disk](https://pguso.medium.com/develop-a-desktop-app-with-tauri-scan-clean-your-disk-ecf5352d2668), this project demonstrates how to build a native-like experience using modern web technologies and system-level performance.\n\n---\n\n## 🚀 Features\n\n- 📂 Select a folder or disk to scan\n- 📊 Analyze disk usage: total size, largest \u0026 oldest files\n- 🗑️ Move selected files safely to trash\n- 💨 Super fast performance with native Rust backend\n- 💅 Sleek, responsive UI with React + TailwindCSS\n\n---\n\n\n## 🧰 Tech Stack\n\n- **Rust** (Tauri backend)\n- **React + TypeScript** (frontend)\n- **TailwindCSS** (styling)\n- **Tauri** for building a secure and lightweight desktop application\n\n---\n\n## 🖥️ Getting Started\n\n### ✅ Prerequisites\n\nMake sure you have the following installed:\n\n- [Rust](https://www.rust-lang.org/tools/install)\n- [Node.js + npm](https://nodejs.org/)\n- [Tauri prerequisites](https://tauri.app/v1/guides/getting-started/prerequisites/)\n\nCheck with:\n\n```bash\ncargo -V\nnpm -v\n````\n\n### Create \u0026 Run the App\n\n````\nnpm create tauri-app\ncd tauri-app\nnpm install\nnpm run tauri dev\n````\n\nOn first run, Tauri will compile Rust dependencies – this might take a bit.\n\n### Project Structure\n\n| Path                   | Description                                             |\n| ---------------------- | ------------------------------------------------------- |\n| `src/`                 | Frontend React application                              |\n| `src-tauri/`           | Tauri-specific Rust backend                             |\n| `src-tauri/src/lib.rs` | Core logic for scanning folders and trashing files      |\n| `src/components/`      | UI components like `PathSelector`, `CleanupSuggestions` |\n| `package.json`         | Frontend dependencies and scripts                       |\n| `Cargo.toml`           | Rust dependencies and build settings                    |\n| `tauri.conf.json`      | Tauri app configuration                                 |\n\n\n## Ideas for Extension\n- Scan multiple folders\n- Add file type filters (e.g., only show .mp4, .zip, etc.)\n- Show file previews or icons\n- Add native notifications after cleanup\n\n## 📚 Learn More\n\n- [Tauri Documentation](https://tauri.app/)\n- [Rust Lang Book](https://doc.rust-lang.org/book/)\n- [TailwindCSS Docs](https://tailwindcss.com/docs)\n\n## ✍️ Author\n\nCreated by [@pguso](https://github.com/pguso)\n\n## 📖 Read the Full Article\n\n👉 [Develop a Desktop App with Tauri: Scan \u0026 Clean Your Disk](https://pguso.medium.com/develop-a-desktop-app-with-tauri-scan-clean-your-disk-ecf5352d2668)\n\n## 📃 License\n\nMIT\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpguso%2Fcleansweep","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpguso%2Fcleansweep","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpguso%2Fcleansweep/lists"}