<?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: Giovanne Sartor</title>
    <description>The latest articles on DEV Community by Giovanne Sartor (@giovanne_sartor).</description>
    <link>https://dev.to/giovanne_sartor</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%2F4027903%2F8e7be97e-7912-4d7d-ba8d-861cad4d62d9.jpg</url>
      <title>DEV Community: Giovanne Sartor</title>
      <link>https://dev.to/giovanne_sartor</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/giovanne_sartor"/>
    <language>en</language>
    <item>
      <title>How I built RuntimeVault: replay production bugs with full runtime state</title>
      <dc:creator>Giovanne Sartor</dc:creator>
      <pubDate>Tue, 14 Jul 2026 00:11:10 +0000</pubDate>
      <link>https://dev.to/giovanne_sartor/how-i-built-runtimevault-replay-production-bugs-with-full-runtime-state-1mdb</link>
      <guid>https://dev.to/giovanne_sartor/how-i-built-runtimevault-replay-production-bugs-with-full-runtime-state-1mdb</guid>
      <description>&lt;p&gt;Every developer knows this conversation:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Hey, can you reproduce this bug?"&lt;br&gt;
"No, it works on my machine."&lt;br&gt;
"Can you try again?"&lt;br&gt;
"I already tried 5 times."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I got tired of this loop. So I built &lt;a href="https://runtimevault.dev" rel="noopener noreferrer"&gt;RuntimeVault&lt;/a&gt; — a tool that captures the &lt;strong&gt;entire runtime state&lt;/strong&gt; when an error fires and lets you replay it locally.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Error monitoring tools (Sentry, LogRocket, etc.) show you &lt;strong&gt;what&lt;/strong&gt; happened. But they don't let you &lt;strong&gt;reproduce&lt;/strong&gt; it.&lt;/p&gt;

&lt;p&gt;You get a stack trace. Maybe a video. But you still spend hours recreating the environment, guessing which variables were null, which network request failed.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution
&lt;/h2&gt;

&lt;p&gt;RuntimeVault captures everything:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Stack trace with source-mapped frames&lt;/li&gt;
&lt;li&gt;Variables in scope at throw-time&lt;/li&gt;
&lt;li&gt;Network requests (request/response pairs)&lt;/li&gt;
&lt;li&gt;DOM state&lt;/li&gt;
&lt;li&gt;Cookies, localStorage, sessionStorage&lt;/li&gt;
&lt;li&gt;Environment (browser, OS, URL, feature flags)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then you run:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
bash
rv replay snap_9f2a1c
And your local environment becomes identical to the user's environment at the moment of failure.

How It Works
Install the SDK (2 lines):
import { RuntimeVault } from '@runtimevault/core';
RuntimeVault.init({ apiKey: 'rv_live_xxx' });
Error fires → snapshot captured automatically
Run rv replay → runtime state restored locally
What Makes It Different
Tool    What it captures    Can reproduce locally?
Sentry  Stack trace + breadcrumbs   No
LogRocket   Video of user session   No
RuntimeVault    Complete runtime state  Yes
MCP Integration
The newest feature: AI agents (Claude Code, Cursor, etc.) can read snapshots directly via MCP.

rv-analyze snap_9f2a1c
# Returns: root cause, confidence, suggested fix
The AI doesn't guess from a stack trace — it reads the actual captured state.

Stack
Frontend: Next.js, Tailwind, Framer Motion
Backend: FastAPI, SQLAlchemy, PostgreSQL
Payments: Stripe
Hosting: Railway
Auth: Google/GitHub OAuth + magic links
What's Next
Open source SDK (already live on GitHub)
CLI replay for team workflows
More AI agent integrations
Try It
Free plan forever, no credit card:

runtimevault.dev

GitHub: github.com/giovannesartor/RuntimeVault

Built by @giovanne_sartor
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>ai</category>
      <category>react</category>
      <category>productivity</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
