-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
199 lines (188 loc) · 10.8 KB
/
Copy pathindex.html
File metadata and controls
199 lines (188 loc) · 10.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<meta property="og:type" content="website">
<meta property="og:site_name" content="QuickDev">
<meta property="og:title" content="QuickDev — 20 Free Online Developer Tools">
<meta property="og:description" content="Free online developer tools. JSON formatter, Base64 encoder, UUID generator, regex tester, JWT decoder, QR generator, SQL formatter, and more. No login, no tracking.">
<meta property="og:url" content="https://quickdev.cc/">
<meta name="twitter:title" content="QuickDev — 20 Free Online Developer Tools">
<meta name="twitter:description" content="Free online developer tools. JSON formatter, Base64 encoder, UUID generator, regex tester, JWT decoder, QR generator, SQL formatter, and more. No login, no tracking.">
<meta name="twitter:card" content="summary">
<title>QuickDev — 20 Free Online Developer Tools</title>
<meta name="description" content="Free online developer tools. JSON formatter, Base64 encoder, UUID generator, regex tester, and more. No login, no tracking, all processing happens in your browser.">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://quickdev.cc/">
<link rel="stylesheet" href="css/style.css">
<script>window.addEventListener('load',function(){var t=document.createElement('script');t.async=1;t.src='https://www.clarity.ms/tag/wz6rbq9kj8';setTimeout(function(){t.remove()},8000);document.head.appendChild(t);});</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "QuickDev",
"url": "https://quickdev.cc",
"description": "19 free online developer tools — JSON formatter, JWT decoder, regex tester, SQL formatter, EXIF viewer, and more. All client-side, no signup, no tracking.",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "All",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" }
}
</script>
</head>
<body>
<nav class="nav">
<div class="container">
<a href="index.html" class="nav-logo">QuickDev</a>
<div class="nav-links">
<a href="tools/json-formatter.html">JSON</a>
<a href="tools/regex-tester.html">Regex</a>
<a href="tools/mock-data.html">Mock</a>
<a href="tools/exif-viewer.html">EXIF</a>
<a href="tools/jwt-decoder.html">JWT</a>
<a href="tools/sql-formatter.html">SQL</a>
<a href="tools/cron-parser.html">Cron</a>
<a href="tools/qr-generator.html">QR</a>
<a href="tools/base64.html">Base64</a>
<a href="tools/minifier.html">Minify</a>
<a href="tools/csv-json.html">CSV</a>
<a href="tools/http-status.html">HTTP</a>
<a href="tools/diff-checker.html">Diff</a>
<a href="tools/markdown-preview.html">MD</a>
<a href="tools/password-generator.html">Pwd</a>
<a href="tools/uuid-generator.html">UUID</a>
<a href="tools/url-encoder.html">URL</a>
<a href="tools/timestamp.html">TS</a>
<a href="tools/color-converter.html">Color</a>
</div>
</div>
</nav>
<main class="main">
<div class="container">
<div class="main-header">
<h1 class="page-title">20 Free Online Developer Tools</h1>
<p class="page-desc">Simple, fast tools that run entirely in your browser. No sign-up. No tracking. Your data never leaves your device.</p>
<input type="text" id="search" placeholder="🔍 Search all 19 tools... (e.g. json, regex, jwt, sql, qr)" style="max-width:500px;margin-bottom:20px" oninput="filterTools()">
</div>
<!-- Inline JSON Formatter -->
<div class="inline-tool">
<div class="inline-header">
<span class="inline-badge">Most Popular</span>
<a href="tools/json-formatter.html" class="inline-title">JSON Formatter — try it here</a>
</div>
<div class="inline-grid" style="display:flex;gap:12px;flex-wrap:wrap;">
<div style="flex:1;min-width:240px;">
<textarea id="inline-input" placeholder="Paste your JSON here... e.g. {"hello":"world"}" style="min-height:120px;"></textarea>
<div class="btn-group" style="margin-top:8px">
<button class="btn btn-primary btn-sm" onclick="inlineFormat()">Format</button>
<button class="btn btn-secondary btn-sm" onclick="inlineMinify()">Minify</button>
<button class="btn btn-secondary btn-sm" onclick="inlineCopy()">Copy</button>
</div>
</div>
<div style="flex:1;min-width:240px;">
<pre id="inline-output" class="result-area" style="min-height:120px;max-height:300px;overflow:auto;color:#888">Formatted JSON will appear here...</pre>
<div id="inline-error" class="error-msg" style="display:none"></div>
</div>
</div>
<div class="text-sm" style="margin-top:8px;color:#888">
🤔 What does this mean? <a href="tools/jwt-decoder.html">Decode JWT</a> · <a href="tools/sql-formatter.html">Format SQL</a> · <a href="tools/regex-tester.html">Test Regex</a> · <a href="tools/exif-viewer.html">Check EXIF</a>
</div>
</div>
<!-- All Tools — by category -->
<div class="tool-category">
<h3 class="cat-title">📝 Formatters</h3>
<div class="tool-grid">
<a href="tools/json-formatter.html" class="tool-card"><h3>{ } JSON</h3><p>Format, validate & minify JSON</p></a>
<a href="tools/sql-formatter.html" class="tool-card"><h3>SQL</h3><p>Beautify SQL queries</p></a>
<a href="tools/html-entity.html" class="tool-card"><h3>HTML Entity</h3><p>Encode/decode HTML special chars</p></a>
<a href="tools/minifier.html" class="tool-card"><h3>CSS/JS/HTML Minifier</h3><p>Compress code, strip comments</p></a>
</div>
</div>
<div class="tool-category">
<h3 class="cat-title">🔐 Encoders & Decoders</h3>
<div class="tool-grid">
<a href="tools/base64.html" class="tool-card"><h3>Base64</h3><p>Encode/decode Base64 text</p></a>
<a href="tools/url-encoder.html" class="tool-card"><h3>URL Encoder</h3><p>URL-encode & decode strings</p></a>
<a href="tools/jwt-decoder.html" class="tool-card"><h3>JWT Decoder</h3><p>Decode & inspect JWT tokens</p></a>
</div>
</div>
<div class="tool-category">
<h3 class="cat-title">🛠️ Generators</h3>
<div class="tool-grid">
<a href="tools/uuid-generator.html" class="tool-card"><h3>UUID</h3><p>Generate UUID v4 in bulk</p></a>
<a href="tools/password-generator.html" class="tool-card"><h3>Password</h3><p>Generate strong random passwords</p></a>
<a href="tools/qr-generator.html" class="tool-card"><h3>QR Code</h3><p>Create & download QR codes</p></a>
<a href="tools/mock-data.html" class="tool-card"><h3>Mock Data 🆕</h3><p>Generate fake users, addresses, companies, APIs</p></a>
</div>
</div>
<div class="tool-category">
<h3 class="cat-title">📊 Converters</h3>
<div class="tool-grid">
<a href="tools/csv-json.html" class="tool-card"><h3>CSV ↔ JSON</h3><p>Convert CSV to/from JSON</p></a>
<a href="tools/color-converter.html" class="tool-card"><h3>Color Converter</h3><p>HEX / RGB / HSL converter</p></a>
<a href="tools/markdown-preview.html" class="tool-card"><h3>Markdown Preview</h3><p>Write & preview markdown</p></a>
<a href="tools/timestamp.html" class="tool-card"><h3>Timestamp</h3><p>Unix time ↔ date converter</p></a>
</div>
</div>
<div class="tool-category">
<h3 class="cat-title">🔍 Testers & Diff</h3>
<div class="tool-grid">
<a href="tools/regex-tester.html" class="tool-card"><h3>Regex Tester</h3><p>Real-time regex matching</p></a>
<a href="tools/diff-checker.html" class="tool-card"><h3>Diff Checker</h3><p>Compare text side by side</p></a>
</div>
</div>
<div class="tool-category">
<h3 class="cat-title">📖 References</h3>
<div class="tool-grid">
<a href="tools/http-status.html" class="tool-card"><h3>HTTP Status Codes</h3><p>Complete status code reference</p></a>
<a href="tools/cron-parser.html" class="tool-card"><h3>Cron Parser</h3><p>Parse cron schedules, see next runs</p></a>
</div>
</div>
<div class="tool-category">
<h3 class="cat-title">🔒 Privacy</h3>
<div class="tool-grid">
<a href="tools/exif-viewer.html" class="tool-card"><h3>📸 EXIF Viewer</h3><p>See & remove hidden photo metadata</p></a>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<p>QuickDev — All tools run locally in your browser. We never see your data. <a href="https://github.com/Linanxi12/devbox-tools/issues/new?title=Feedback&body=**Tool:**%0A**Issue:**%0A**Suggestion:**" target="_blank" style="color:var(--accent);text-decoration:underline">💬 Feedback</a></p>
</div>
</footer>
<script>
function inlineFormat(){
var err=document.getElementById('inline-error'); err.style.display='none';
var out=document.getElementById('inline-output');
try { var d=JSON.parse(document.getElementById('inline-input').value); out.textContent=JSON.stringify(d,null,2); out.style.color='var(--text-bright)'; }
catch(e){ err.style.display='block'; err.textContent='Invalid JSON: '+e.message; out.textContent=''; }
}
function inlineMinify(){
var err=document.getElementById('inline-error'); err.style.display='none';
var out=document.getElementById('inline-output');
try { var d=JSON.parse(document.getElementById('inline-input').value); out.textContent=JSON.stringify(d); out.style.color='var(--accent)'; }
catch(e){ err.style.display='block'; err.textContent='Invalid JSON: '+e.message; out.textContent=''; }
}
function inlineCopy(){
var t=document.getElementById('inline-output').textContent;
if(t){ navigator.clipboard.writeText(t); }
}
document.getElementById('inline-input').value='{"name":"QuickDev","tools":19,"features":["client-side","no tracking","free"]}';
inlineFormat();
function filterTools(){
var q=document.getElementById('search').value.toLowerCase();
document.querySelectorAll('.tool-category').forEach(function(cat){
var any=!q;
cat.querySelectorAll('.tool-card').forEach(function(c){
var match=!q||c.textContent.toLowerCase().includes(q);
c.style.display=match?'':'none';
if(match) any=true;
});
cat.style.display=any?'':'none';
});
}
</script>
</body>
</html>