-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
502 lines (487 loc) · 29.4 KB
/
index.html
File metadata and controls
502 lines (487 loc) · 29.4 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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ReleaseRun — Free Developer Tools for Release Risk</title>
<meta name="description" content="Free developer tools for CVE monitoring, end-of-life tracking, dependency scanning, and upgrade planning. 84 free tools. No signup.">
<link rel="canonical" href="https://releaserun.github.io">
<style>
:root { --bg: #0d1117; --card: #161b22; --border: #30363d; --text: #e6edf3; --muted: #8b949e; --accent: #58a6ff; --green: #3fb950; --orange: #d29922; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--accent); text-decoration: none; } a:hover { text-decoration: underline; }
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
header { padding: 48px 0 32px; text-align: center; border-bottom: 1px solid var(--border); }
header h1 { font-size: 2.4em; margin-bottom: 12px; }
header h1 span { color: var(--accent); }
header p { font-size: 1.2em; color: var(--muted); max-width: 600px; margin: 0 auto 24px; }
.cta { display: inline-block; background: var(--accent); color: var(--bg); padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 1em; }
.cta:hover { opacity: 0.9; text-decoration: none; }
.tools { padding: 48px 0; }
.tools h2 { font-size: 1.6em; margin-bottom: 24px; text-align: center; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.widget-preview { width: 100%; border: none; border-radius: 8px; margin-top: 14px; background: #0d1117; }
.widget-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; font-size: 0.85em; }
.widget-links a { color: var(--accent); }
.card h3 { font-size: 1.1em; margin-bottom: 8px; }
.card h3 a { color: var(--text); } .card h3 a:hover { color: var(--accent); }
.card p { color: var(--muted); font-size: 0.9em; }
.tag { display: inline-block; font-size: 0.75em; padding: 2px 8px; border-radius: 12px; margin-top: 8px; }
.tag-free { background: rgba(63,185,80,0.15); color: var(--green); }
.tag-security { background: rgba(210,153,34,0.15); color: var(--orange); }
.about { padding: 48px 0; border-top: 1px solid var(--border); }
.about h2 { font-size: 1.4em; margin-bottom: 16px; }
.about p { color: var(--muted); margin-bottom: 12px; }
.links { padding: 32px 0; border-top: 1px solid var(--border); }
.links h2 { font-size: 1.2em; margin-bottom: 16px; }
.links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 16px; }
.links li a { display: inline-block; padding: 8px 16px; border: 1px solid var(--border); border-radius: 6px; font-size: 0.9em; }
footer { padding: 32px 0; border-top: 1px solid var(--border); text-align: center; color: var(--muted); font-size: 0.85em; }
</style>
</head>
<body>
<header>
<div class="container">
<h1>Release<span>Run</span></h1>
<p>Free developer tools for tracking software release risk. CVE monitoring, end-of-life checks, dependency scanning, and upgrade planning.</p>
<a href="https://releaserun.com/tools/" class="cta">Browse 84 Free Tools</a>
</div>
</header>
<section class="tools">
<div class="container">
<div class="container">
<h2>All 84 Free Tools</h2>
<h3 style="margin-top:32px;margin-bottom:16px;font-size:1.1em;color:#374151;">☸️ Kubernetes & Docker</h3>
<div class="grid">
<div class="card">
<h3><a href="https://releaserun.com/tools/container-image-picker/">Container Base Image Picker</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/container-image-size-optimizer/">Container Image Size Optimizer</a></h3>
<p>Container Image Size Optimizer Paste a Dockerfile to get layer by layer size optimization suggestion</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/compose-checker/">Docker Compose Version Checker</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/compose-to-k8s/">Docker Compose to Kubernetes Converter</a></h3>
<p>Docker Compose to Kubernetes Converter Convert your docker-compose.yml to production-ready Kubernete</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/docker-tag-explorer/">Docker Tag Explorer</a></h3>
<p>🐳 Docker Tag Explorer Docker Image Fetch Tags Popular Images Filter Tags Sort By Newest FirstSmalles</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/helm-checker/">Helm Chart Compatibility Checker</a></h3>
<p>Tool page &#8211; uses page template</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/k8s-cost-estimator/">Kubernetes Cost Estimator</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/k8s-rbac-generator/">Kubernetes RBAC Policy Generator</a></h3>
<p>Kubernetes RBAC Policy Generator Generate least-privilege Role, ClusterRole, and Binding YAML for Ku</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/k8s-resource-calculator/">Kubernetes Resource Calculator</a></h3>
<p>Kubernetes Resource Calculator Calculate CPU and memory requests and limits for your Kubernetes work</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/k8s-upgrade-simulator/">Kubernetes Upgrade Simulator</a></h3>
<p>Kubernetes Upgrade Simulator Plan your cluster upgrade path with confidence. See every API deprecati</p>
</div>
</div>
<h3 style="margin-top:32px;margin-bottom:16px;font-size:1.1em;color:#374151;">⚙️ DevOps & CI/CD</h3>
<div class="grid">
<div class="card">
<h3><a href="https://releaserun.com/tools/ci-calculator/">CI Pipeline Upgrade Calculator</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/ci-cost-calculator/">CI/CD Pipeline Cost Calculator</a></h3>
<p>CI/CD Pipeline Cost Calculator Compare real costs across GitHub Actions, GitLab CI, CircleCI, Buildk</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/cidr-calculator/">CIDR / Subnet Calculator</a></h3>
<p>CIDR / Subnet Calculator Calculate subnets, split networks, and visualize IP address allocation 🔢 Ne</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/cloud-matrix/">Cloud Version Matrix</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/github-actions-audit/">GitHub Actions Version Auditor</a></h3>
<p>Paste your workflow YAML. Instantly see which GitHub Actions are outdated, unpinned, or from unverif</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/github-actions-workflow-optimizer/">GitHub Actions Workflow Optimizer</a></h3>
<p>GitHub Actions Workflow Optimizer Paste your workflow YAML and get concrete optimization advice for </p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/terraform-checker/">Terraform Provider Checker</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/terraform-provider-matrix/">Terraform Provider Compatibility Matrix</a></h3>
<p>Terraform Provider Compatibility Matrix Check which provider versions work with your Terraform versi</p>
</div>
</div>
<h3 style="margin-top:32px;margin-bottom:16px;font-size:1.1em;color:#374151;">📊 Release & Upgrade</h3>
<div class="grid">
<div class="card">
<h3><a href="https://releaserun.com/tools/db-migration-risk/">Database Migration Risk Assessor</a></h3>
<p>📋 Load Example Migration 1. Paste SQL Migration Database Generic SQLPostgreSQLMySQL / MariaDBSQLite </p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/upgrade-planner/">Database Migration Risk Assessor</a></h3>
<p>📋 Load Example Migration 1. Paste SQL Migration Database Generic SQLPostgreSQLMySQL / MariaDBSQLite </p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/eol-timeline/">EOL Timeline Visualizer</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/stack-supported-report-card/">Is My Stack Supported? Report Card</a></h3>
<p>Is My Stack Supported? Paste your stack versions and generate a shareable support report card with E</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/migration-estimator/">Migration Effort Estimator</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/rss-builder/">Release Feed Builder</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/release-notes-diff/">Release Notes Diff</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/tech-detector/">Technology Detector</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/version-picker/">Which Version Should I Use?</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/cli/">releaserun CLI</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
</div>
<h3 style="margin-top:32px;margin-bottom:16px;font-size:1.1em;color:#374151;">📦 Dependency Management</h3>
<div class="grid">
<div class="card">
<h3><a href="https://releaserun.com/tools/csproj-health/">.csproj NuGet Dependency Health Checker</a></h3>
<p>Paste your .csproj file and get instant health grades for every NuGet package — latest versions from</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/api-deprecation-timeline/">API Deprecation Timeline Tracker</a></h3>
<p>API Deprecation Timeline Track upcoming API sunsets across Google Cloud, AWS, Azure, Stripe, Twilio,</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/cargo-toml-health/">Cargo.toml Dependency Health Checker</a></h3>
<p>Paste your Cargo.toml [dependencies] block and get an instant health grade for every Rust crate — la</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/dep-eol-scanner/">Dependency EOL Scanner</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/go-module-checker/">Go Module Health Check</a></h3>
<p>Tool page &#8211; uses page template</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/go-module-health/">Go Module Health Checker</a></h3>
<p>Paste go.mod. Checks each direct dependency against the Go proxy for major/minor/patch version gaps,</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/gomod-health/">Go go.mod Dependency Health Checker</a></h3>
<p>Paste your go.mod file and get an instant health grade for every Go module — latest versions on the </p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/gradle-health/">Gradle build.gradle Dependency Health Checker</a></h3>
<p>Paste your build.gradle (Groovy or Kotlin DSL) and get instant health grades for every Java dependen</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/k8s-deprecation-checker/">K8s Deprecation Checker</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/maven-dependency-health/">Maven Dependency Health Checker</a></h3>
<p>Paste pom.xml or Maven coordinates. Checks each dependency against Maven Central for latest version </p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/pom-xml-health/">Maven pom.xml Dependency Health Checker</a></h3>
<p>Paste your pom.xml dependencies block and get an instant health grade for every Maven dependency — l</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/nuget-package-health/">NuGet Package Health Checker</a></h3>
<p>Check any NuGet (.NET) package for latest version, deprecation status, and active maintenance. Insta</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/composer-package-health/">PHP Composer Package Health Checker</a></h3>
<p>Check any PHP Composer package (Packagist) for latest version, abandonment status, and active mainte</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/composer-json-health/">PHP composer.json Dependency Health Checker</a></h3>
<p>Paste your composer.json and get instant health grades for every PHP package — latest from Packagist</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/pypi-package-health/">Python PyPI Package Health Checker</a></h3>
<p>Paste requirements.txt. Checks each Python package on PyPI for deprecated status, last release date,</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/repo-health/">Repository Health Report</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/gemfile-health/">Ruby Gemfile Dependency Health Checker</a></h3>
<p>Paste your Gemfile.lock or Gemfile and get instant health grades for every Ruby gem — latest version</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/ruby-gems-health/">Ruby Gems Health Checker</a></h3>
<p>Check any Ruby gem (RubyGems.org) for latest version, download activity, and active maintenance. Gra</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/cargo-health/">Rust Cargo.toml Health Checker</a></h3>
<p>Paste Cargo.toml. Checks every dependency against crates.io for the latest version, yanked status, d</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/stack-health/">Tech Stack Health Scorecard</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/npm-package-health/">npm Package Health Checker</a></h3>
<p>Paste your package.json. See which npm dependencies are deprecated, abandoned, single-maintainer ris</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/package-audit/">package.json Deep Audit</a></h3>
<p>package.json Deep Audit Audit your Node.js dependencies for license conflicts, bundle bloat, depreca</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/package-json-health/">package.json Dependency Health Checker</a></h3>
<p>Paste your package.json and get a health grade for every dependency — latest versions, version gaps,</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/pyproject-health/">pyproject.toml Dependency Health Checker</a></h3>
<p>Paste your pyproject.toml and get instant health grades for every Python dependency — latest version</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/requirements-txt-health/">requirements.txt Health Checker</a></h3>
<p>Paste your requirements.txt and get a health grade for every Python package — latest versions, how f</p>
</div>
</div>
<h3 style="margin-top:32px;margin-bottom:16px;font-size:1.1em;color:#374151;">🔒 Security</h3>
<div class="grid">
<div class="card">
<h3><a href="https://releaserun.com/tools/env-security-scanner-2/">.env File Security Scanner</a></h3>
<p>Paste your .env file and detect exposed secrets, hardcoded credentials, high-entropy tokens, and ris</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/env-security-scanner/">.env Security Scanner</a></h3>
<p>.env Security Scanner Paste your .env content and get an instant risk report for exposed secrets, we</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/cve-alerting-dashboard/">CVE Alerting Dashboard</a></h3>
<p>🔍 CVE Lookup Package Name Ecosystem npm (Node.js)PyPI (Python)GoMaven (Java)crates.io (Rust)RubyGems</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/cve-dashboard/">CVE Dashboard</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/vulnerability-scanner/">Dependency Vulnerability Scanner</a></h3>
<p>Dependency Vulnerability Scanner Paste your dependency file and get an instant vulnerability report </p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/docker-compose-security/">Docker Compose Security Checker</a></h3>
<p>Paste your docker-compose.yml. Checks every service for critical security issues: Docker socket moun</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/dockerfile-linter/">Dockerfile Security Linter</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/github-actions-security/">GitHub Actions Security Checker</a></h3>
<p>Paste your GitHub Actions workflow YAML. Checks for pull_request_target misuse (supply chain attack </p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/security-headers/">HTTP Security Headers Analyzer</a></h3>
<p>Paste HTTP response headers from curl -I https://your-site.com or your browser DevTools (Network tab</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/kubernetes-security-linter/">Kubernetes YAML Security Linter</a></h3>
<p>Paste your Kubernetes YAML. Instantly checks for 12 common security misconfigurations: running as ro</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/sbom-analyzer/">SBOM Health Analyzer</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/header-analyzer/">Security Header Analyzer</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/terraform-security/">Terraform Security Scanner</a></h3>
<p>Paste your Terraform .tf file. Checks for hardcoded AWS credentials, open SSH/database ports, public</p>
</div>
</div>
<h3 style="margin-top:32px;margin-bottom:16px;font-size:1.1em;color:#374151;">🛠️ Developer Tools</h3>
<div class="grid">
<div class="card">
<h3><a href="https://releaserun.com/tools/config-drift/">Configuration Drift Detector</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/cron-builder/">Cron Expression Builder</a></h3>
<p>Cron Expression Builder Build, parse, and test cron expressions visually with next execution preview</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/dns-auditor/">DNS Record Auditor</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/git-conflict-helper/">Git Conflict Helper</a></h3>
<p>📋 Load an Example 1. Paste Conflicting Code Paste the entire file or section with git conflict marke</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/actions-auditor/">GitHub Actions Auditor</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/jwt-decoder/">JWT Decoder & Inspector</a></h3>
<p>JWT Decoder &amp; Inspector Decode, inspect, and validate JSON Web Tokens securely in your browser P</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/nginx-config-generator/">Nginx Config Generator</a></h3>
<p>Nginx Config Generator Generate production-ready Nginx configuration files with SSL, security header</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/pg-extensions/">PostgreSQL Extension Matrix</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/promql-builder/">PromQL Query Builder</a></h3>
<p>📋 Quick Templates 1. Metric Metric Name Common Metrics — pick one —http_requests_totalhttp_request_d</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/badge-generator/">README Badge Generator</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/regex-tester/">Regex Tester & Debugger</a></h3>
<p>Regex Tester &#038; Debugger Test, debug, and visualize regular expressions with real-time matching </p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/ssl-checker/">SSL/TLS Certificate Analyzer</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/ssl-config-generator/">SSL/TLS Configuration Generator</a></h3>
<p>SSL/TLS Configuration Generator Generate secure SSL/TLS configs for Nginx, Apache, Caddy, HAProxy, a</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/semver-checker/">SemVer Compatibility Checker</a></h3>
<p>Free developer tool from ReleaseRun.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/tools/yaml-json-converter/">YAML ↔ JSON Converter</a></h3>
<p>YAML ↔ JSON Converter Convert, validate, and format YAML and JSON with real-time preview Load Exampl</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/chmod-calculator/">chmod Calculator</a></h3>
<p>Build Linux file permissions visually. Click the bits or type an octal code, then copy the chmod command.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/package-version-checker/">Package Version Checker</a></h3>
<p>Check whether a package is up to date across npm, PyPI, crates.io, and RubyGems.</p>
</div>
<div class="card">
<h3><a href="https://releaserun.com/uptime-sla-calculator/">Uptime SLA Calculator</a></h3>
<p>Translate SLA percentages into real downtime budgets for contracts, incidents, and on-call planning.</p>
</div>
</div>
</div>
</section>
<section class="tools">
<div class="container">
<h2>Web Stories</h2>
<ul>
<li><a href="stories/kubernetes-gotchas.html">5 Kubernetes Gotchas That Break Production Deployments</a> — AMP Web Story</li>
<li><a href="stories/python-314.html">Python 3.14 Is Coming: 5 Changes That Actually Matter</a> — AMP Web Story</li>
<li><a href="stories/docker-mistakes.html">5 Docker Mistakes That Break Production</a> — AMP Web Story</li>
<li><a href="stories/nodejs-mistakes.html">5 Node.js Mistakes You're Probably Making in Production</a> — AMP Web Story</li>
<li><a href="stories/k8s-security.html">5 Kubernetes Security Mistakes That Expose Your Cluster</a> — AMP Web Story</li>
<li><a href="stories/github-actions-mistakes.html">5 GitHub Actions Mistakes That Slow Down Every Build</a> — AMP Web Story</li>
<li><a href="stories/python-security.html">5 Python Security Mistakes That Expose Your Application</a> — AMP Web Story</li>
</ul>
<h2>Embeddable Widgets</h2>
<div class="grid">
<div class="card">
<h3><a href="https://releaserun.github.io/embed.html">Release Health Card</a></h3>
<p>Compact single-product widget for docs, dashboards, internal portals, and READMEs. Shows support status, days to EOL, and live badges.</p>
<iframe class="widget-preview" src="https://releaserun.github.io/widgets/release-health-card.html?product=nodejs&cycle=18" height="265" loading="lazy"></iframe>
<div class="widget-links">
<a href="https://releaserun.github.io/embed.html">Embed docs</a>
<a href="https://releaserun.github.io/widgets/release-health-card.html?product=nodejs&cycle=18">Open widget</a>
</div>
</div>
<div class="card">
<h3><a href="https://releaserun.github.io/embed.html">Stack Health Score</a></h3>
<p>Executive-style stack summary for engineering dashboards. Shows weighted score, grade, support/risk/EOL counts, and a CTA back to ReleaseRun.</p>
<iframe class="widget-preview" src="https://releaserun.github.io/widgets/stack-health-score.html?stack=nodejs,python,postgresql,docker-engine,kubernetes" height="250" loading="lazy"></iframe>
<div class="widget-links">
<a href="https://releaserun.github.io/embed.html">Embed docs</a>
<a href="https://releaserun.github.io/widgets/stack-health-score.html?stack=nodejs,python,postgresql,docker-engine,kubernetes">Open widget</a>
</div>
</div>
</div>
</div>
</section>
<section class="about">
<div class="container">
<h2>About ReleaseRun</h2>
<p><a href="https://releaserun.com">ReleaseRun</a> tracks software releases across 50+ technologies including Node.js, Python, Go, Rust, Kubernetes, Docker, PostgreSQL, React, Terraform, and more. Each technology gets a dedicated hub page with lifecycle timelines, upgrade paths, risk scoring, and version comparisons.</p>
<p>Our 84 free tools are built for engineering teams who need to understand release risk before upgrading. Everything runs client-side, no signup required. We also offer a <a href="https://github.com/Releaserun/releaserun-cli">CLI tool</a> (v1.4.0), a <a href="https://github.com/Releaserun/releaserun-action">GitHub Action</a>, and <a href="https://releaserun.github.io/badges.html">embeddable badges</a> for your READMEs.</p>
<p>We track <a href="https://releaserun.com/versions/">1,029 individual version pages</a> with EOL dates, support status, and security advisories across all technologies. Our <a href="https://releaserun.com/methodology/">grading methodology</a> is fully transparent.</p>
</div>
</section>
<section class="links">
<div class="container">
<h2>Resources</h2>
<ul>
<li><a href="https://releaserun.com/tools/">All 30 Tools</a></li>
<li><a href="https://releaserun.com/release-index/">Release Index</a></li>
<li><a href="https://releaserun.com/faq/">FAQ Hub</a></li>
<li><a href="https://releaserun.com/kubernetes-releases/">Kubernetes Releases</a></li>
<li><a href="https://releaserun.com/python-releases/">Python Releases</a></li>
<li><a href="https://releaserun.com/docker-releases/">Docker Releases</a></li>
<li><a href="https://releaserun.com/nodejs-releases/">Node.js Releases</a></li>
<li><a href="https://releaserun.com/go-releases/">Go Releases</a></li>
<li><a href="https://releaserun.com/rust-releases/">Rust Releases</a></li>
<li><a href="https://releaserun.com/postgresql-releases/">PostgreSQL Releases</a></li>
<li><a href="https://releaserun.com/terraform/">Terraform Releases</a></li>
<li><a href="https://releaserun.com/react-releases/">React Releases</a></li>
<li><a href="https://releaserun.github.io/badges.html">Badge API Docs</a></li>
<li><a href="https://releaserun.github.io/embed.html">Embeddable Widgets</a></li>
<li><a href="https://releaserun.github.io/k8s-deprecated-apis.html">K8s Deprecated APIs Cheat Sheet</a></li>
<li><a href="https://releaserun.com/methodology/">Grading Methodology</a></li>
<li><a href="https://github.com/Releaserun/releaserun-cli">CLI Source (v1.4.0)</a></li>
<li><a href="https://github.com/Releaserun/releaserun-action">GitHub Action</a></li>
<li><a href="https://www.npmjs.com/package/releaserun">CLI on npm</a></li>
</ul>
</div>
</section>
<footer>
<div class="container">
<p>© 2026 <a href="https://releaserun.com">ReleaseRun</a>. All tools are free to use.</p>
</div>
</footer>
</body>
</html>