{"id":44141568,"url":"https://github.com/gammabowl/try-devutils","last_synced_at":"2026-02-15T02:00:31.128Z","repository":{"id":336337695,"uuid":"1045947615","full_name":"gammabowl/try-devutils","owner":"gammabowl","description":"Essential developer utilities - available on web and desktop","archived":false,"fork":false,"pushed_at":"2026-02-08T23:43:38.000Z","size":3997,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-09T04:43:51.594Z","etag":null,"topics":["dev-utils","developer-utilities","utils"],"latest_commit_sha":null,"homepage":"https://trydevutils.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gammabowl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","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":"2025-08-28T00:45:10.000Z","updated_at":"2026-02-08T23:43:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/gammabowl/try-devutils","commit_stats":null,"previous_names":["gammabowl/try-devutils"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/gammabowl/try-devutils","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gammabowl%2Ftry-devutils","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gammabowl%2Ftry-devutils/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gammabowl%2Ftry-devutils/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gammabowl%2Ftry-devutils/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gammabowl","download_url":"https://codeload.github.com/gammabowl/try-devutils/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gammabowl%2Ftry-devutils/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29465397,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T01:01:38.065Z","status":"online","status_checked_at":"2026-02-15T02:00:07.449Z","response_time":118,"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":["dev-utils","developer-utilities","utils"],"created_at":"2026-02-09T01:05:34.776Z","updated_at":"2026-02-15T02:00:31.123Z","avatar_url":"https://github.com/gammabowl.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TryDevUtils\n\nA handy collection of developer utilities built with React, TypeScript and assisted by 🤖.\nAvailable as a **web app** and a **native desktop app** (macOS, Windows, Linux) powered by [Tauri](https://v2.tauri.app).\n\n## 🚀 Quick Start\n\n### Prerequisites\n\n- Node.js (v22)\n- npm\n- [Rust](https://rustup.rs/) (only for desktop development)\n\n### Installation \u0026 Development\n\n```sh\n# Development\nnpm run dev              # Start web development server (port 8080)\nnpm run preview          # Preview production build locally\n\n# Building\nnpm run build            # Production web build\nnpm run build:dev        # Development build\n\n# Tests\nnpm run test             # Run Playwright browser tests (console errors on util pages)\n\n# CI build + tests\nnpm run build:ci          # Build + Playwright tests (used by GitHub Actions)\n\n# Code Quality\nnpm run lint             # Run ESLint\nnpm run check            # Type check and build validation\n```\n\nThe web app will be available at `http://localhost:8080`.\n\n## 🖥️ Desktop App (Tauri)\n\n### Prerequisites\n\n1. **Rust** – install via [rustup](https://rustup.rs/):\n   ```sh\n   curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh\n   ```\n2. **macOS**: Xcode Command Line Tools (`xcode-select --install`)\n3. **Windows**: [Microsoft C++ Build Tools](https://visualstudio.microsoft.com/visual-cpp-build-tools/) + WebView2\n4. **Linux**: `build-essential`, `libwebkit2gtk-4.1-dev`, `libssl-dev`, `libayatana-appindicator3-dev`, `librsvg2-dev`\n\n### Desktop Development\n\n```sh\nnpm run tauri:dev        # Launch desktop app with hot-reload\nnpm run tauri:build      # Build production desktop installer\nnpx tauri info           # Show environment diagnostics\nnpx tauri icon ./public/logo.png  # Regenerate app icons\n```\n\n\u003e **Note:** The first `tauri:dev` run takes 2–5 minutes while Cargo downloads and compiles Rust dependencies. Subsequent runs are fast (~5s).\n\n### Desktop Build Output\n\n`npm run tauri:build` produces platform-specific installers in `src-tauri/target/release/bundle/`:\n\n| Platform | Formats |\n|----------|---------|\n| macOS    | `.dmg`, `.app` |\n| Windows  | `.msi`, `.exe` (NSIS) |\n| Linux    | `.deb`, `.AppImage` |\n\n### Architecture\n\nThe desktop app reuses 100% of the web app's business logic and utility components. Platform detection (`isTauri()`) switches between:\n\n- **Web** → `BrowserRouter` + header/footer layout\n- **Desktop** → `HashRouter` + native sidebar layout with draggable titlebar\n\n\n## 🛠️ Development Setup\n\n### IDE Configuration\n\nFor the best development experience, we recommend using **Visual Studio Code** with the following extensions:\n\n#### Essential Extensions\n- **TypeScript and JavaScript Language Features** (built-in)\n- **ESLint** - JavaScript/TypeScript linting\n- **Prettier** - Code formatting\n- **Tailwind CSS IntelliSense** - CSS class autocomplete\n- **Auto Rename Tag** - HTML/JSX tag synchronization\n\n\n### Project Structure\n\n```\nsrc/\n├── components/\n│   ├── utils/          # Individual utility components\n│   ├── ui/             # Reusable UI components (shadcn/ui)\n│   ├── Layout.tsx      # Web layout (header + footer)\n│   └── DesktopLayout.tsx # Desktop layout (sidebar + titlebar)\n├── hooks/\n│   ├── use-tauri.ts    # Tauri native API hooks (clipboard, dialogs, filesystem)\n│   └── ...\n├── lib/\n│   ├── platform.ts     # Platform detection (isTauri, getPlatform, getModifierKey)\n│   └── ...\n├── pages/              # Page components (shared between web \u0026 desktop)\n└── utils/              # Helper functions\nsrc-tauri/\n├── Cargo.toml          # Rust dependencies\n├── tauri.conf.json     # Tauri window \u0026 bundle configuration\n├── capabilities/       # Security permissions for Tauri plugins\n├── icons/              # Auto-generated app icons (all platforms)\n└── src/\n    ├── main.rs         # Desktop entry point\n    └── lib.rs          # Tauri plugins, commands, and window setup\n```\n\n\n## 🚀 Deployment \u0026 Hosting\n\nThis app is deployed and hosted on **Vercel** via Git integration.\n\n**CI Build + Tests**\n- GitHub Actions runs a build + Playwright tests on every push and pull request.\n- The workflow must pass before merging to `main`.\n\n**Deployments**\n- Vercel creates **Preview Deployments** for non-main branches and pull requests.\n- Vercel creates **Production Deployments** from `main`.\n\n\n## 📄 License\n\nThis project is open source and available under the [MIT License](LICENSE).\n\n## 🙏 Acknowledgments\n\n- Inspired by various developer utils collections\n- Thanks to the open source community\n\n---\n\nHappy coding/vibe-coding! 🎉\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgammabowl%2Ftry-devutils","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgammabowl%2Ftry-devutils","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgammabowl%2Ftry-devutils/lists"}