TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What is the best visual diff program for web pages?

9 pointsby lord_sudoalmost 4 years ago
Hi HN! I&#x27;ve been thinking a lot about visual diffs recently for web pages. I know there are tools like Chromatic Storybook[0] that take image snapshots of a page and then render pixel differences, but I couldn&#x27;t find tools that actually render live React components or web pages and display them side-by-side, highlighting the differences.<p>Do people know if these tools exist? If they do, what are some of the best tools out there?<p>To clarify, the goal is not to compare source code, but to compare the rendered HTML&#x2F;CSS output.<p>[0]: https:&#x2F;&#x2F;www.chromatic.com&#x2F;

3 comments

weekayalmost 4 years ago
Other options are tools like Percy.io and Sauce labs which do visual diff , but they are again based on image differences rather than component level. Alternatively have been thinking of a simple home grown puppeteer script that will render the image of developed webpage and overlay with the design rendered as a image to identify differences.
daniekaalmost 4 years ago
Backstop.js is very useful for this. Provides good tools for viewing the visual diffs. Also possible to automate in a CI environment.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;garris&#x2F;BackstopJS" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;garris&#x2F;BackstopJS</a>
efortisalmost 4 years ago
Not side-by-side, but I open the pages in the first two tabs and cycle Cmd+1, Cmd+2 to see what moves.