<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Digital Ghost</title>
    <description>The latest articles on DEV Community by Digital Ghost (@digitalgh0st).</description>
    <link>https://dev.to/digitalgh0st</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3704294%2Ff68998ab-8765-4c4c-b4fe-eb2df0f78e6d.jpg</url>
      <title>DEV Community: Digital Ghost</title>
      <link>https://dev.to/digitalgh0st</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/digitalgh0st"/>
    <language>en</language>
    <item>
      <title>I built a free carbon &amp; page-weight auditor for the web — feedback welcome</title>
      <dc:creator>Digital Ghost</dc:creator>
      <pubDate>Sun, 20 Sep 2026 03:44:02 +0000</pubDate>
      <link>https://dev.to/digitalgh0st/i-built-a-free-carbon-page-weight-auditor-for-the-web-feedback-welcome-5d4</link>
      <guid>https://dev.to/digitalgh0st/i-built-a-free-carbon-page-weight-auditor-for-the-web-feedback-welcome-5d4</guid>
      <description>&lt;p&gt;Hey DEV community 👋&lt;/p&gt;

&lt;p&gt;I've been working on a side project and I'd love some honest feedback before I push it further.&lt;/p&gt;

&lt;p&gt;It's called &lt;strong&gt;Tardigrade&lt;/strong&gt; — a free, browser-based auditor that tells you the carbon footprint and page weight of any URL. Paste a link, get an A–F grade in seconds. No signup, no tracking, no upsell.&lt;/p&gt;

&lt;p&gt;🔗 &lt;strong&gt;Live demo:&lt;/strong&gt; &lt;a href="https://tardigrade-six.vercel.app/" rel="noopener noreferrer"&gt;tardigrade-six.vercel.app&lt;/a&gt;&lt;/p&gt;





&lt;h2&gt;Why I built it&lt;/h2&gt;

&lt;p&gt;The average web page now weighs over 2 MB. Some hit 10 MB. Most developers never see that number because nobody puts it in front of them.&lt;/p&gt;

&lt;p&gt;Every byte transferred costs electricity — servers, networks, devices. Using the &lt;strong&gt;Sustainable Web Design&lt;/strong&gt; model, we can estimate the carbon cost of a single page visit:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;grams of CO₂ per visit = bytes transferred × 1.8 Wh/GB × 442 gCO₂/kWh
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;That's roughly 0.36 grams of CO₂ per megabyte. Sounds tiny — until you realize a bloated 5 MB page served to 10,000 visitors a day adds up fast.&lt;/p&gt;

&lt;p&gt;I wanted a tool that puts that number in front of developers without any friction.&lt;/p&gt;





&lt;h2&gt;What it does&lt;/h2&gt;

&lt;ol&gt;
  &lt;li&gt;
&lt;strong&gt;Fetch&lt;/strong&gt; — Pulls live performance data from Google PageSpeed Insights (page weight, HTTP requests, load time, Lighthouse score).&lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Calculate&lt;/strong&gt; — Runs the Sustainable Web Design formula to estimate CO₂ per visit.&lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Grade&lt;/strong&gt; — Blends weight, CO₂, requests, load time, and Lighthouse into a single A–F score, plus color-coded metrics and concrete suggestions.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Nothing is stored. No accounts, no analytics on your audits, no email capture. Paste, read, leave.&lt;/p&gt;





&lt;h2&gt;Tech stack &amp;amp; design choices&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Vanilla HTML/CSS/JS&lt;/strong&gt; — no framework bloat (would be ironic otherwise)&lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Three.js&lt;/strong&gt; — animated hero with an abstract floating tardigrade made of wireframe geometry, orbited by red/yellow particles&lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Vercel serverless function&lt;/strong&gt; — proxies PageSpeed Insights to avoid CORS and keep any API key hidden&lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Scroll-triggered reveals&lt;/strong&gt; via IntersectionObserver&lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Dark / light mode&lt;/strong&gt; respecting system preference&lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Shareable URLs&lt;/strong&gt; — every audit gets a &lt;code&gt;?url=&lt;/code&gt; permalink for Slack/Discord sharing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The name comes from the tardigrade — the toughest animal on Earth. Survives radiation, vacuum, boiling, freezing. Your website should be just as resilient, and just as light.&lt;/p&gt;





&lt;h2&gt;What I'd love feedback on&lt;/h2&gt;

&lt;p&gt;This is where you come in. A few specific things I'm unsure about:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;
&lt;strong&gt;Scoring weights&lt;/strong&gt; — Right now the grade blends page weight (30%), CO₂ (30%), requests (15%), load time (10%), and Lighthouse (15%). Are these the right ratios? Should load time matter more?&lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;The carbon math&lt;/strong&gt; — I'm using the Sustainable Web Design model (1.8 Wh/GB × 442 gCO₂/kWh). Are there better or more current models I should support?&lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;The UI&lt;/strong&gt; — Does the Three.js hero feel appropriate for a dev tool, or is it distracting?&lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Missing metrics&lt;/strong&gt; — Anything you'd want to see that isn't there? (I'm considering adding TTFB, CLS, and per-resource-type breakdowns.)&lt;/li&gt;
  &lt;li&gt;
&lt;strong&gt;Mobile experience&lt;/strong&gt; — Does the input form and score card feel right on small screens?&lt;/li&gt;
&lt;/ul&gt;





&lt;h2&gt;Try it and tell me your grade&lt;/h2&gt;

&lt;p&gt;Honestly — paste your own site in and see what you get. Most people land on a C or D the first time. If you're brave, drop the grade in the comments 👇&lt;/p&gt;

&lt;p&gt;🔗 &lt;a href="https://tardigrade-six.vercel.app/" rel="noopener noreferrer"&gt;&lt;strong&gt;tardigrade-six.vercel.app&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;





&lt;h2&gt;Roadmap (depending on feedback)&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;Per-resource-type breakdown (images vs JS vs fonts)&lt;/li&gt;
  &lt;li&gt;"Greenest sites" leaderboard&lt;/li&gt;
  &lt;li&gt;Compare two URLs side-by-side&lt;/li&gt;
  &lt;li&gt;Downloadable audit report as PDF/image&lt;/li&gt;
  &lt;li&gt;Browser extension&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If any of these sound useful, let me know which one to prioritize.&lt;/p&gt;





&lt;p&gt;Thanks for reading. It's a solo project, so every bit of feedback helps. 🙏&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Built by &lt;a href="https://www.digitalghost.blog" rel="noopener noreferrer"&gt;Digital Ghost 👻&lt;/a&gt; — free forever.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tough on weight. Kind to Earth.&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>showdev</category>
      <category>javascript</category>
      <category>auditor</category>
    </item>
  </channel>
</rss>
