<?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: VR Frequency</title>
    <description>The latest articles on DEV Community by VR Frequency (@vrfrequency).</description>
    <link>https://dev.to/vrfrequency</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3818896%2F5de71acd-743e-4cc8-8c54-025a9373438a.jpg</url>
      <title>DEV Community: VR Frequency</title>
      <link>https://dev.to/vrfrequency</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vrfrequency"/>
    <language>en</language>
    <item>
      <title>I Built a Chrome Extension to Make JavaScript State Debugging Less Painful</title>
      <dc:creator>VR Frequency</dc:creator>
      <pubDate>Thu, 14 May 2026 03:15:34 +0000</pubDate>
      <link>https://dev.to/vrfrequency/i-built-a-chrome-extension-to-make-javascript-state-debugging-less-painful-28de</link>
      <guid>https://dev.to/vrfrequency/i-built-a-chrome-extension-to-make-javascript-state-debugging-less-painful-28de</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxn0lo089lajaszetll2c.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxn0lo089lajaszetll2c.png" alt=" " width="764" height="873"&gt;&lt;/a&gt;&lt;br&gt;
I Built a Chrome Extension to Make JavaScript State Debugging Less Painful&lt;/p&gt;

&lt;p&gt;I recently published my Chrome extension, &lt;strong&gt;Dweav (Data Weave) Trace&lt;/strong&gt;, on the Chrome Web Store.&lt;/p&gt;

&lt;p&gt;It started from a simple frustration:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;console.log()&lt;/code&gt; is useful... until your app state starts changing across multiple steps, components, events, API responses, user actions, and hidden edge cases.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;At that point, debugging becomes less about understanding your application and more about digging through a noisy console trying to remember what changed, when it changed, and why.&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;Dweav Trace&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Chrome Web Store:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://chromewebstore.google.com/detail/dweav-trace/djibmlmofhdmijbpekpneclbpnokemne" rel="noopener noreferrer"&gt;https://chromewebstore.google.com/detail/dweav-trace/djibmlmofhdmijbpekpneclbpnokemne&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Privacy policy:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://altru.dev/extensions/dweav-trace.html" rel="noopener noreferrer"&gt;https://altru.dev/extensions/dweav-trace.html&lt;/a&gt;&lt;/p&gt;


&lt;h2&gt;
  
  
  What is Dweav Trace?
&lt;/h2&gt;

&lt;p&gt;Dweav Trace is an offline-first Chrome extension for tracing JavaScript application state inside the browser.&lt;/p&gt;

&lt;p&gt;The basic idea is simple.&lt;/p&gt;

&lt;p&gt;Instead of scattering random logs everywhere, you can send structured state snapshots to Dweav Trace and view them in a chronological timeline.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nf"&gt;dweav&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;cartState&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Cart updated&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nf"&gt;dweav&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;userSession&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;User logged in&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Each trace gives you a clearer picture of what your app looked like at a specific moment.&lt;/p&gt;

&lt;p&gt;The goal is not to replace Chrome DevTools.&lt;/p&gt;

&lt;p&gt;The goal is to make state changes easier to understand when normal console logging becomes too messy.&lt;/p&gt;




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

&lt;p&gt;When building complex browser-based apps, I kept running into the same problem.&lt;/p&gt;

&lt;p&gt;I would add logs like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;before&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;state&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;after&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;state&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;checkout step&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;checkout&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;user&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;user&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;cart&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;cart&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then I would run the app again, trigger a flow, open the console, and try to visually compare large objects across multiple logs.&lt;/p&gt;

&lt;p&gt;That works for small things.&lt;/p&gt;

&lt;p&gt;But once the app grows, the console becomes noisy.&lt;/p&gt;

&lt;p&gt;You start asking:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What changed between step 1 and step 2?&lt;/li&gt;
&lt;li&gt;Was this value added, removed, changed, or moved?&lt;/li&gt;
&lt;li&gt;Did the state mutate unexpectedly?&lt;/li&gt;
&lt;li&gt;Did the problem happen before or after the API response?&lt;/li&gt;
&lt;li&gt;Which snapshot was actually the important one?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is the problem Dweav Trace is trying to solve.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Dweav Trace does
&lt;/h2&gt;

&lt;p&gt;Dweav Trace gives you a browser side panel where you can inspect state snapshots over time.&lt;/p&gt;

&lt;p&gt;Some of the main features include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Chronological state timeline&lt;/li&gt;
&lt;li&gt;Structured object inspection&lt;/li&gt;
&lt;li&gt;Snapshot labeling&lt;/li&gt;
&lt;li&gt;Structural diffing&lt;/li&gt;
&lt;li&gt;Added, removed, changed, and moved value tracking&lt;/li&gt;
&lt;li&gt;Auto-redaction for sensitive-looking values&lt;/li&gt;
&lt;li&gt;Offline-first design&lt;/li&gt;
&lt;li&gt;No analytics&lt;/li&gt;
&lt;li&gt;No telemetry&lt;/li&gt;
&lt;li&gt;No external servers&lt;/li&gt;
&lt;li&gt;No account required for the basic workflow&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is designed for developers who want more visibility into browser app behavior without sending their debugging data somewhere else.&lt;/p&gt;




&lt;h2&gt;
  
  
  Example use case
&lt;/h2&gt;

&lt;p&gt;Imagine you are debugging a checkout flow.&lt;/p&gt;

&lt;p&gt;You might trace state at different points:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nf"&gt;dweav&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;cart&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Initial cart&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nf"&gt;dweav&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;cart&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;After quantity update&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nf"&gt;dweav&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;checkoutState&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Checkout started&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nf"&gt;dweav&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;paymentState&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Payment form submitted&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nf"&gt;dweav&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;orderResult&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Order response received&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Instead of manually comparing console logs, you get a timeline of meaningful checkpoints.&lt;/p&gt;

&lt;p&gt;That makes it easier to understand how the state evolved through the flow.&lt;/p&gt;




&lt;h2&gt;
  
  
  Built-in developer tools
&lt;/h2&gt;

&lt;p&gt;I also included several small utilities that I often need while debugging or building web apps.&lt;/p&gt;

&lt;p&gt;Dweav Trace includes tools like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;JSON formatter&lt;/li&gt;
&lt;li&gt;JWT decoder&lt;/li&gt;
&lt;li&gt;Base64 encode/decode&lt;/li&gt;
&lt;li&gt;SHA-256 hashing&lt;/li&gt;
&lt;li&gt;UUID generator&lt;/li&gt;
&lt;li&gt;URL parser/tools&lt;/li&gt;
&lt;li&gt;Case converter&lt;/li&gt;
&lt;li&gt;CRON translator&lt;/li&gt;
&lt;li&gt;Clipboard history&lt;/li&gt;
&lt;li&gt;Local diagnostic helpers&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The idea is to keep common browser-development utilities close to the tracing workflow.&lt;/p&gt;




&lt;h2&gt;
  
  
  Privacy-first by design
&lt;/h2&gt;

&lt;p&gt;One of the most important decisions I made was to keep Dweav Trace offline-first.&lt;/p&gt;

&lt;p&gt;Debugging data can be sensitive.&lt;/p&gt;

&lt;p&gt;Application state may contain tokens, user information, internal IDs, API responses, or other data you do not want leaving your machine.&lt;/p&gt;

&lt;p&gt;So Dweav Trace is designed around local usage.&lt;/p&gt;

&lt;p&gt;The extension does not use analytics or telemetry, and the Chrome Web Store listing declares no data collection.&lt;/p&gt;

&lt;p&gt;There is also built-in auto-redaction to help reduce accidental exposure of sensitive-looking values.&lt;/p&gt;




&lt;h2&gt;
  
  
  Who is this for?
&lt;/h2&gt;

&lt;p&gt;Dweav Trace is mainly for JavaScript developers building browser-based applications.&lt;/p&gt;

&lt;p&gt;It can be useful for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Frontend developers&lt;/li&gt;
&lt;li&gt;Indie hackers&lt;/li&gt;
&lt;li&gt;Web app builders&lt;/li&gt;
&lt;li&gt;Dashboard developers&lt;/li&gt;
&lt;li&gt;Game UI developers&lt;/li&gt;
&lt;li&gt;Crypto/web3 app developers&lt;/li&gt;
&lt;li&gt;AI tool builders&lt;/li&gt;
&lt;li&gt;Anyone debugging complex browser state&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is especially useful when your app has multiple moving parts and you need to understand how state changes over time.&lt;/p&gt;




&lt;h2&gt;
  
  
  What it is not
&lt;/h2&gt;

&lt;p&gt;Dweav Trace is not meant to replace the full browser DevTools experience.&lt;/p&gt;

&lt;p&gt;It is also not a full observability platform.&lt;/p&gt;

&lt;p&gt;It is focused on one specific problem:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Helping developers understand state changes more clearly while building and debugging browser apps.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Current status
&lt;/h2&gt;

&lt;p&gt;Dweav Trace is now published on the Chrome Web Store.&lt;/p&gt;

&lt;p&gt;This is an early public release, and I am looking for feedback from developers who regularly work with complex frontend state.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Chrome Web Store:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://chromewebstore.google.com/detail/dweav-trace/djibmlmofhdmijbpekpneclbpnokemne" rel="noopener noreferrer"&gt;https://chromewebstore.google.com/detail/dweav-trace/djibmlmofhdmijbpekpneclbpnokemne&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Privacy policy:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://altru.dev/extensions/dweav-trace.html" rel="noopener noreferrer"&gt;https://altru.dev/extensions/dweav-trace.html&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Feedback wanted
&lt;/h2&gt;

&lt;p&gt;I would love feedback on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The tracing workflow&lt;/li&gt;
&lt;li&gt;The side panel experience&lt;/li&gt;
&lt;li&gt;The state diff format&lt;/li&gt;
&lt;li&gt;The developer utilities&lt;/li&gt;
&lt;li&gt;The onboarding flow&lt;/li&gt;
&lt;li&gt;What frameworks or debugging patterns should be supported next&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you try it, let me know what feels useful, confusing, missing, or unnecessary.&lt;/p&gt;

&lt;p&gt;I built Dweav Trace because I wanted a cleaner way to debug state-heavy browser apps.&lt;/p&gt;

&lt;p&gt;Hopefully it helps other developers too.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>debugging</category>
      <category>chromeextension</category>
    </item>
    <item>
      <title>JelloOS: Assistive Tech Without Barriers</title>
      <dc:creator>VR Frequency</dc:creator>
      <pubDate>Wed, 11 Mar 2026 20:28:31 +0000</pubDate>
      <link>https://dev.to/vrfrequency/jelloos-assistive-tech-without-barriers-2kck</link>
      <guid>https://dev.to/vrfrequency/jelloos-assistive-tech-without-barriers-2kck</guid>
      <description>&lt;p&gt;Just wanted to say hello and introduce everyone to one of my projects currently in development. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sovereign Assistive OS&lt;/li&gt;
&lt;li&gt;Digital Nervous System&lt;/li&gt;
&lt;li&gt;Human‑Centered Computing&lt;/li&gt;
&lt;li&gt;Browser‑Native Eye‑Tracking&lt;/li&gt;
&lt;li&gt;Client‑Side Telemetry&lt;/li&gt;
&lt;li&gt;Privacy‑First Assistive Tech&lt;/li&gt;
&lt;li&gt;Accessible Autonomy&lt;/li&gt;
&lt;li&gt;Open Assistive Infrastructure&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;JelloOS is a project built around a simple belief: everyone deserves the ability to interact with their world, no matter their physical limitations.  &lt;/p&gt;

&lt;p&gt;Most assistive technologies today are expensive, locked‑down, or require specialized hardware. JelloOS takes the opposite approach. It runs entirely in the browser, uses standard laptops or tablets, and relies on privacy‑preserving eye‑tracking to let people communicate, navigate interfaces, and control connected devices — all without sending a single frame of video to a server.&lt;/p&gt;

&lt;p&gt;The goal isn’t just accessibility; it’s dignity. JelloOS is meant to feel like a digital nervous system for people who’ve been cut off from their physical environment, giving them back agency through open, human‑centered design. It’s free, it’s lightweight, and it’s built so anyone can try it without needing a clinic, a specialist, or a five‑figure device.&lt;/p&gt;

&lt;p&gt;At its core, JelloOS is an experiment in what assistive tech could look like if we treated autonomy as a fundamental right rather than a premium feature. &lt;/p&gt;

&lt;p&gt;Project meant to be free and accessible worldwide using any standard browser and preferably tablet.&lt;br&gt;
&lt;a href="https://altrue.dev" rel="noopener noreferrer"&gt;https://altrue.dev&lt;/a&gt;&lt;/p&gt;

</description>
      <category>accessibilitytech</category>
      <category>opensource</category>
      <category>webdev</category>
      <category>assistivetechnology</category>
    </item>
  </channel>
</rss>
