Essential developer utilities built with React + TypeScript. Available as a web app, a desktop app, and a Chrome extension.
Quick start
npm run dev # Web dev server (port 8080)
npm run build # Production web build
npm run test # Playwright tests
npm run lint # ESLint
npm run check # Type check + buildnpm run devWeb app: http://localhost:8080
Prereqs: Rust + platform toolchain.
npm run tauri:dev
npm run tauri:buildBuild outputs: src-tauri/target/release/bundle/
npm run extension:prepareLoad:
- Chrome →
chrome://extensions/ - Enable Developer Mode
- Load unpacked →
dist-extension/
Publish:
- Zip
dist-extension/ - Upload to Chrome Web Store Developer Console
Project layout
src/ # Web + shared UI
src-tauri/ # Desktop app
extension/ # Extension manifest + icons
CI / deploy
- GitHub Actions runs build + tests on push/PR.
- Vercel deploys preview and production from
main.
Acknowledgments
- Inspired by various developer utils collections
- Thanks to the open source community
License