Tool Cluster

9 local tools

Developer Tools

Format, convert, compare, inspect, and generate local developer artifacts for JSON, CSV, URLs, timestamps, IDs, hashes, and colors.

Local-onlyNo uploadTask chooser

Which tool should I use?

NeedUseInputNotes
Format or validate payloadsJSON Formatter/ValidatorJSONStrict JSON parser.
Convert tabular dataCSV to JSON ConverterCSV or TSVHeader and delimiter controls.
Compare API responsesJSON Diff CheckerTwo JSON valuesIgnores key order.
Inspect token claimsJWT DecoderJWTDecode only, no signature verification.
Generate sortable IDsULID GeneratorOptionsIncludes timestamp decode.

Developer tool entries

Practical examples

API debugging flow

Format a response, parse the request query, decode a JWT claim, then convert any epoch timestamps.

Workflow notes

Format and compare

Start with JSON Formatter, then use JSON Diff when you need path-level changes.

Generate and inspect

Use UUID for random IDs, ULID for sortable IDs, and Hash Generator for checksums.

Security-adjacent caveat

JWT Decoder and Hash Generator are local inspection helpers, not security audits.

Adjacent categories

FAQ

Do developer tools call external APIs?

No. The listed tools run in the browser and do not upload inputs.

Which ID tool should I choose?

Use UUID v4 for random identifiers and ULID when sort order by creation time is useful.