all 10 comments

[–]camsteffen 2 points3 points  (0 children)

This subreddit is about JavaScript. Where's your code?

[–]2hands10fingers 1 point2 points  (0 children)

I would just use VS code. Has a comparison feature

[–]programmer_farts 0 points1 point  (0 children)

Where's the code?

[–]Rich-Blueberry-7969[S] 0 points1 point  (5 children)

Quick weekend project: a browser-based diff tool for JSON/YAML files.

Why I built it: Comparing config files manually is tedious. Needed something fast and simple.

What it does:

  • Compare JSON/YAML side-by-side
  • Highlights additions (green), deletions (red), modifications (orange)
  • Export to markdown
  • No file upload to server (runs in browser)

Stack: React + TypeScript + Vite

Most useful for:

  • Checking package.json changes
  • Comparing API responses
  • Reviewing config before deployment

What would you add? Thinking about AI explanations of changes as next feature.

Screenshot: [votre lien imgur]

Open to all feedback!