You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Stateless Password – Deterministic site passwords (no storage)
62
+
- QuickType – Generate types / interfaces from JSON
63
+
- Data Faker – Mock data from schema or visual builder
64
+
- ID Generator – UUID, NanoID, custom patterns
65
+
66
+
#### Viewers
67
+
68
+
- Markdown – Live preview & export
69
+
- Diff – Monaco diff for text / JSON / code
70
+
- SVG Preview – Inspect & optimize SVG
71
+
- HTML/CSS Preview – Live HTML playground
72
+
73
+
#### Formatters
74
+
75
+
- JSON Formatter – Pretty print & tree explorer
76
+
- SQL Formatter – Format SQL queries
77
+
- JS/TS Minifier – Minify JavaScript / TypeScript
78
+
- CSS Minifier – Minify CSS
79
+
- HTML Minifier – Minify HTML
80
+
81
+
#### Converters
82
+
83
+
- JSON ⇄ YAML – Bi‑directional conversion
84
+
- Backslash Escape – Escape / unescape sequences
85
+
- URL Parser – Parse & edit URL components
86
+
- URL Encoder – Encode / decode URLs
87
+
- Base64 – Encode / decode text
88
+
- Epoch Converter – Epoch ↔ human time
89
+
90
+
> Planned: WebSocket Client, Mock API Server / Webhook tester.
35
91
36
92
## Getting Started
37
93
@@ -65,56 +121,28 @@ Access app from the browser at `http://localhost:3001`
65
121
yarn tauri build
66
122
```
67
123
68
-
## Roadmap
69
-
70
-
### Features
71
-
72
-
-[x] Move tool position
73
-
-[x] Quick access icon on menu
74
-
-[x] Grouped tools
75
-
-[x] Hide/Unhide tools
76
-
-[x] Dashboard
77
-
-[x] Frequently used tools
78
-
-[x] Add Custom RSS Feed
79
-
-[ ] Smart clipboard
80
-
81
-
### Tools
82
-
83
-
-[x] JWT
84
-
-[x] Markdown
85
-
-[x] SVG
86
-
-[x] Cron
87
-
-[x] ID Generator
88
-
-[x] Regex Tester
89
-
-[x] Bundle Analyzer
90
-
-[x] SSH
91
-
-[x] HAR Viewer
92
-
-[x] REST API Testing
93
-
-[x] GraphiQL
94
-
-[x] EPOCH Converter
95
-
-[x] URL Parser
96
-
-[x] URL Encoder
97
-
-[x] HMAC Generator
98
-
-[x] Backslash Escape/Unescape
99
-
-[x] DNS Lookup Tool
100
-
-[x] Certificate Decoder X.509
101
-
-[x] JSON Formatter
102
-
-[x] Timezone
103
-
-[x] Diff tools
104
-
-[x] Base64 Text (encode/decode)
105
-
-[x] HTM/CSS Preview
106
-
-[x] JSON <> YAML
107
-
-[x] Hashing Text
108
-
-[x] Quick Type
109
-
-[x] SQL Formatter
110
-
-[x] HTML Formatter
111
-
-[x] CSS Formatter
112
-
-[x] JS/TS Formatter
113
-
-[x] Stateless password
114
-
-[x] Data Faker
115
-
-[ ] WebSocket Client
116
-
-[ ] Mock API Server / Webhook test
124
+
### Inspiration
125
+
126
+
Devbox draws conceptual inspiration from modern multi‑tool developer workbenches. Special thanks to:
127
+
128
+
-**devtools-x** – For pioneering the idea of a cohesive, high‑performance toolbox and influencing early architectural choices (sidebar ergonomics, and tech stack direction).
129
+
-**devutils** – For further inspiration on focused, single‑purpose utility design and polished UX details.
130
+
131
+
Devbox builds on those ideas with a unified dashboard (usage‑aware surfacing + RSS), stronger module abstraction, no filler tools and an offline‑first Tauri desktop focus.
117
132
118
133
## Contributing
119
134
120
-
We welcome contributions! Issues for bugs, UX polish, or new tools are all appreciated. Development setup and installation documentation will be added alongside the initial release.
135
+
We welcome contributions! We're especially looking to improve:
-**Documentation** – Usage tips, adding a new tool module, troubleshooting.
143
+
144
+
Before implementing a new tool, please file an issue describing: the problem it solves, expected users, overlap with existing tools, and proposed module placement. We bias toward depth & quality over breadth.
145
+
146
+
To run locally, follow the [Getting Started](#getting-started) section (clone → `yarn install` → `yarn start`). Web build also runs from the same dev server.
147
+
148
+
Bug reports, focused PRs, profiling traces, and thoughtful design discussions are all appreciated.
0 commit comments