• Blog
  • Docs
  • Pricing
  • We’re hiring!
Log inSign up
stevekrouse

stevekrouse

repro-fyi

Infosite on how to make a minimal repro
Public
Like
1
repro-fyi
Home
Code
4
README.md
index.md
H
main.ts
template.tsx
Environment variables
Branches
1
Pull requests
Remixes
History
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Sign up now
Code
/
index.md
Code
/
index.md
Search
…
Viewing readonly version of main branch: v45
View latest version
index.md

repro.fyi

The Art of the Minimal Reproduction

Minimal repros are key to debugging, both by yourself and with others.

What is a minimal repro?

  1. It is minimal. It contains the least amount of details to be sufficient. Anything can that can be removed, is removed.
  2. It reliably reproduces the issue. "If you follow these steps exactly, you too will see the issue."

Why make a minimal repro?

πŸͺž For Yourself

First-and-foremost, you make repros for you.

Debugging is isolating. You cannot address what you cannot isolate. How can you fix a bug if you don't know where it is.

You can't fix what you can't repro: how would you know if you even fixed it? This point is profound, so let me spell it out for you:

  1. You have a bug
  2. You don't first establish a repro.
  3. You try to fix the bug.
  4. Now what? Did you even fix the bug? How could you tell?
  5. Now you have to go back, undo your fix, and see if the bug comes back. In other words, you go back and create a reverse-repro.

You can only declare a bug "fixed" when it the repro no longer repros.

This is similar to the maxim that you should never optimize without first measuring. If you try to make something faster without first measuring how fast it is, how will you know if you succeeded or made things worse? More importantly: how will you make sexy graphs you can post online to brag about your achievement?

🀝 For Others (When You Need Help)

When you ask for help with a messy, complex codebase, you're essentially saying: "Here's my whole room. Find my keys."

A minimal repro says: "Here are my keys on an empty table. Why won't they turn in this lock?"

Asking someone to isolate your bug for you is like asking a painter to clean your room before they can paint the walls. That's your job. The isolation work is the prerequisite to getting helpβ€”not part of the help itself.

A good repro gets you:

  • Faster responses β€” Helpers can immediately understand your problem
  • Better answers β€” They're solving your actual issue, not guessing
  • More willing helpers β€” Respect for others' time earns goodwill

People who help in forums, Discord servers, and GitHub issues are volunteering their time. Respect it.

The XY Problem: Sometimes while making a minimal repro, you'll realize you're asking for help with the wrong problem entirely. You thought you had a CSS bug, but actually you're fighting the browser's default styles. Read more about the XY Problem β†’

πŸ€– For AI Tools

Got ChatGPT, Claude, or Copilot? A minimal repro is perfect for pasting into an AI assistant.

The smaller and more focused your code, the better the AI can understand and help. A 2000-line file will confuse it. A 20-line reproduction will get you a precise answer. Minimal repros aren't just for humans anymore.


What Makes a Good Repro?

A great repro puts the other person into the bug as fast as possible. Here's what that looks like:

πŸ“ Steps to Reproduce

Write out the exact steps. Don't assume anything is obvious.

Example of good steps
  1. Go to the login page
  2. Enter any email address
  3. Leave password blank
  4. Click "Submit"
  5. Expected: Validation error appears
  6. Actual: Page crashes with white screen

πŸ” Debug Information

Include the context that helps diagnose:

  • Error messages β€” Copy the full text, not just "it says error"
  • Console logs β€” Open DevTools (F12) β†’ Console tab
  • Network requests β€” DevTools β†’ Network tab (look for red/failed requests)
  • Crash reports β€” Stack traces, error codes, anything the system tells you
  • Incognito test β€” Try in a private/incognito window to rule out browser extensions
Tools that capture this automatically
  • Jam.dev β€” Captures console logs, network requests, and more in one click
  • Browser DevTools β€” Your built-in best friend
  • Screen recording with voiceover β€” Walk through what you're seeing

🎬 Show, Don't Just Tell

A video of you recreating the issue while talking through it is incredibly valuable. Describe:

  • What you're clicking
  • What you expect to happen
  • What actually happens

⚑ One-Click Repros (The Gold Standard)

The absolute best repro is one someone can run instantly:

  • JSBin / CodePen / JSFiddle β€” For frontend issues
  • Val Town β€” For backend/API issues
  • TypeScript Playground β€” For TypeScript type issues
  • Rollup REPL β€” For bundler issues
  • GitHub repo β€” For complex setups (but keep it minimal!)

If someone can click a link and see your bug, you've done the work for them.


Good Repro vs Bad Repro

❌ Bad bug report

"The app is broken. When I click the button nothing happens. Please fix ASAP."

What's wrong with this?

  • No steps to reproduce
  • No error messages
  • No expected vs actual behavior
  • No environment info
  • "Nothing happens" could mean 100 different things

βœ… Good bug report

Environment: Chrome 120, macOS Sonoma, Node 20.10.0

Steps:

  1. Open the dashboard (/dashboard)
  2. Click "Export Data" button
  3. Select "CSV" format
  4. Click "Download"

Expected: CSV file downloads

Actual: Nothing happens. Console shows: TypeError: Cannot read property 'map' of undefined at ExportService.js:42

Minimal repro: [CodeSandbox link]

Notes: Works fine with "JSON" format. Only fails with CSV.

Why this is better:

  • Exact steps anyone can follow
  • Clear expected vs actual
  • Full error message with line number
  • Environment specified
  • Narrowed down to CSV-specific issue
  • Includes runnable reproduction

How to Make a Minimal Repro

Option A: Start Fresh (Recommended)

  1. Create a new project/file/sandbox
  2. Add only the code needed to show the bug
  3. If you can't reproduce it, that tells you something!

Option B: Strip Down

  1. Make a copy of your project
  2. Delete half the code
  3. Does the bug still happen?
    • Yes: Delete half of what remains
    • No: The bug was in what you deletedβ€”put it back and delete the other half
  4. Repeat until you have the smallest possible code that shows the bug

Another similar debugging technique is git bisect until you find the offending commit.

What to remove first
  • Unrelated features and buttons
  • Styling and CSS (unless it's a styling bug)
  • Authentication and API calls (replace with hardcoded data)
  • Extra dependencies
  • Comments and dead code
  • Configuration files (use defaults)

πŸŽ‰ Plot Twist: You Might Fix It Yourself

Somewhere in this process, you'll often go: "Wait, why did I write it that way?"

That's the magic. The minimal repro process forces you to understand your own code. And understanding is 90% of fixing.


When a Minimal Repro Isn't Enough

Sometimes context matters. A minimal repro might not capture:

  • Race conditions β€” Timing-dependent bugs that only appear under load
  • Environment-specific issues β€” Bugs that only occur on specific OS/browser/hardware combinations
  • Security vulnerabilities β€” Where the full context is needed to understand the attack vector
  • Data-dependent bugs β€” Issues that only appear with specific data shapes or volumes

In these cases, be upfront: "I couldn't reproduce this in isolation, but here's what I've tried..." and provide as much context as you can about when/how it occurs.

Heisenbugs: Named after Heisenberg's uncertainty principle, these are bugs that seem to disappear or change behavior when you try to observe them. Common causes include timing-sensitive code (the debugger changes timing), memory issues masked by debug builds, or console.log statements that affect execution order. If you suspect a Heisenbug, document when it occurs vs. when it doesn't, and note whether debugging tools affect the behavior.


The Checklist

Before sharing your repro, verify each item. Click any item to link directly to it.

βœ… Do This

  • Self-contained β€” Can someone copy-paste-run it without setup?

  • Include the error β€” Full error message, not "it doesn't work"

  • Include versions β€” Node version, browser, OS, package versions

  • Steps to reproduce β€” Numbered list of exactly what to do

  • Expected vs Actual β€” What should happen? What happens instead?

  • Actually minimal β€” Could you remove anything else? Try.

❌ Don't Do This

  • No screenshots of code β€” I can't copy-paste an image. Give me text.

  • No partial code β€” "Here's the relevant part" often hides the bug

  • No entire codebases β€” Your 50-file project isn't a repro

  • "It doesn't work" β€” Doesn't work how? What did you expect?

  • Nothing is "obvious" β€” State your environment, steps, everything

Quick Links

  • πŸ“š SSCCE β€” The original guide that inspired this page
  • πŸ› Jam.dev β€” Capture bug reports with full context
  • πŸ“– How to Report Bugs Effectively β€” Simon Tatham's classic guide

repro.fyi β€” Because debugging is isolating, and isolating is your job.

Found this helpful? Share it with someone who sends you "it's broken" messages.

Have feedback or want to contribute? Edit this on Val Town β†’

FeaturesVersion controlCode intelligenceCLIMCP
Use cases
TeamsAI agentsSlackGTM
DocsShowcaseTemplatesNewestTrendingAPI examplesNPM packages
PricingNewsletterBlogAboutCareers
We’re hiring!
Brandhi@val.townStatus
X (Twitter)
Discord community
GitHub discussions
YouTube channel
Bluesky
Open Source Pledge
Terms of usePrivacy policyAbuse contact
Β© 2026 Val Town, Inc.