<?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: Dev Rajput</title>
    <description>The latest articles on DEV Community by Dev Rajput (@dev_rajput).</description>
    <link>https://dev.to/dev_rajput</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%2F4086635%2Fbab54d90-ad4e-40fd-bc4a-4fba536eb346.png</url>
      <title>DEV Community: Dev Rajput</title>
      <link>https://dev.to/dev_rajput</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dev_rajput"/>
    <language>en</language>
    <item>
      <title>I Built DEVRIAN: Privacy-First Developer Tools That Run in Your Browser</title>
      <dc:creator>Dev Rajput</dc:creator>
      <pubDate>Thu, 20 Aug 2026 12:11:45 +0000</pubDate>
      <link>https://dev.to/dev_rajput/i-built-devrian-privacy-first-developer-tools-that-run-in-your-browser-44j7</link>
      <guid>https://dev.to/dev_rajput/i-built-devrian-privacy-first-developer-tools-that-run-in-your-browser-44j7</guid>
      <description>&lt;p&gt;How many times have you opened a random website just to format JSON, decode a JWT, generate a UUID, test a regex, or calculate a hash?&lt;/p&gt;

&lt;p&gt;I’ve done it more times than I’d like to admit.&lt;/p&gt;

&lt;p&gt;The annoying part isn't the task itself.&lt;/p&gt;

&lt;p&gt;It’s the workflow:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Find a tool&lt;/li&gt;
&lt;li&gt;Open another website&lt;/li&gt;
&lt;li&gt;Paste potentially sensitive data&lt;/li&gt;
&lt;li&gt;Deal with ads or unnecessary UI&lt;/li&gt;
&lt;li&gt;Perform one tiny task&lt;/li&gt;
&lt;li&gt;Close the tab&lt;/li&gt;
&lt;li&gt;Repeat the same thing tomorrow&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s why I started building &lt;strong&gt;DEVRIAN&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://devrian.in/" rel="noopener noreferrer"&gt;https://devrian.in/&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What is DEVRIAN?
&lt;/h2&gt;

&lt;p&gt;DEVRIAN is a browser-based developer workspace focused on small, practical utilities that developers use constantly.&lt;/p&gt;

&lt;p&gt;The idea is simple:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;If a developer utility can run locally in the browser, why send the input to a server at all?&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;DEVRIAN is designed around local browser execution wherever possible, so tools can process your data directly in your browser instead of requiring unnecessary server-side processing.&lt;/p&gt;

&lt;p&gt;That makes the workflow faster, simpler, and much more comfortable when you're working with things you don't want leaving your machine.&lt;/p&gt;

&lt;h2&gt;
  
  
  What can you do with it?
&lt;/h2&gt;

&lt;p&gt;The current toolkit includes:&lt;/p&gt;

&lt;h3&gt;
  
  
  JSON
&lt;/h3&gt;

&lt;p&gt;Format, validate, repair, and minify JSON payloads.&lt;/p&gt;

&lt;p&gt;Useful when you're debugging:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;API responses&lt;/li&gt;
&lt;li&gt;configuration files&lt;/li&gt;
&lt;li&gt;request payloads&lt;/li&gt;
&lt;li&gt;nested objects&lt;/li&gt;
&lt;li&gt;malformed JSON&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  JWT
&lt;/h3&gt;

&lt;p&gt;Inspect JSON Web Tokens directly in the browser.&lt;/p&gt;

&lt;p&gt;You can work with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;JWT headers&lt;/li&gt;
&lt;li&gt;payload claims&lt;/li&gt;
&lt;li&gt;expiration information&lt;/li&gt;
&lt;li&gt;token structure&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Useful when debugging authentication and API integrations.&lt;/p&gt;

&lt;h3&gt;
  
  
  Base64
&lt;/h3&gt;

&lt;p&gt;Encode and decode Base64 data without opening a separate utility.&lt;/p&gt;

&lt;p&gt;It also supports common encoding workflows such as URL-safe Base64, Hex data, Data URIs, and UTF-8 text.&lt;/p&gt;

&lt;h3&gt;
  
  
  UUID
&lt;/h3&gt;

&lt;p&gt;Generate UUIDs when you need identifiers during development.&lt;/p&gt;

&lt;p&gt;DEVRIAN supports UUID v4 and UUID v7 generation, including bulk generation.&lt;/p&gt;

&lt;h3&gt;
  
  
  Regex
&lt;/h3&gt;

&lt;p&gt;Test and debug regular expressions with real-time matching and capture-group information.&lt;/p&gt;

&lt;p&gt;No need to create a temporary script just to check whether a pattern behaves the way you expect.&lt;/p&gt;

&lt;h3&gt;
  
  
  URL
&lt;/h3&gt;

&lt;p&gt;Encode and decode URLs and query parameters.&lt;/p&gt;

&lt;p&gt;The URL tool also provides an interactive way to inspect query parameters, which is particularly useful when debugging API requests.&lt;/p&gt;

&lt;h3&gt;
  
  
  Hashes
&lt;/h3&gt;

&lt;p&gt;Generate hashes such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;SHA-256&lt;/li&gt;
&lt;li&gt;SHA-512&lt;/li&gt;
&lt;li&gt;SHA-1&lt;/li&gt;
&lt;li&gt;MD5&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Useful for development, debugging, checksums, and working with cryptographic message digests.&lt;/p&gt;

&lt;h3&gt;
  
  
  HTML
&lt;/h3&gt;

&lt;p&gt;Encode and decode HTML entities and special characters.&lt;/p&gt;

&lt;p&gt;This is especially handy when you're dealing with escaped HTML, user input, or debugging encoded content.&lt;/p&gt;

&lt;h3&gt;
  
  
  Timestamps
&lt;/h3&gt;

&lt;p&gt;Convert between Unix timestamps and human-readable date formats such as ISO 8601, UTC, and local time.&lt;/p&gt;

&lt;p&gt;Because nobody enjoys manually figuring out what &lt;code&gt;1755...&lt;/code&gt; means.&lt;/p&gt;

&lt;h3&gt;
  
  
  Passwords
&lt;/h3&gt;

&lt;p&gt;Generate high-entropy passwords and API secrets using browser-side cryptographic randomness.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why browser-local processing matters
&lt;/h2&gt;

&lt;p&gt;Developer tools often deal with data that isn't meant to be public.&lt;/p&gt;

&lt;p&gt;Think about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;JWTs&lt;/li&gt;
&lt;li&gt;API payloads&lt;/li&gt;
&lt;li&gt;internal URLs&lt;/li&gt;
&lt;li&gt;configuration values&lt;/li&gt;
&lt;li&gt;identifiers&lt;/li&gt;
&lt;li&gt;logs&lt;/li&gt;
&lt;li&gt;encoded data&lt;/li&gt;
&lt;li&gt;test credentials&lt;/li&gt;
&lt;li&gt;customer-related development data&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For these kinds of tasks, uploading the input to a random online utility isn't always a great workflow.&lt;/p&gt;

&lt;p&gt;DEVRIAN's approach is to keep these utilities browser-native whenever the operation allows it.&lt;/p&gt;

&lt;p&gt;The goal isn't to make developers think about privacy every time they format JSON.&lt;/p&gt;

&lt;p&gt;The goal is to make the privacy-friendly workflow the easy workflow.&lt;/p&gt;

&lt;h2&gt;
  
  
  It's not just a collection of random utilities
&lt;/h2&gt;

&lt;p&gt;Another thing I'm working toward with DEVRIAN is connecting individual tools into actual developer workflows.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Debugging an API token&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;JWT Debugger → inspect claims → check expiration → understand the token structure&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Preparing an API payload&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;JSON Formatter → validate → inspect → format the final payload&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Handling user input&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Regex Tester → validate patterns → inspect matches → test edge cases&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Working with timestamps&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Timestamp Converter → inspect Unix timestamps → compare with ISO dates → understand what your backend is actually returning&lt;/p&gt;

&lt;p&gt;Instead of having ten unrelated websites bookmarked, the idea is to build one developer-focused workspace where these small tasks live together.&lt;/p&gt;

&lt;h2&gt;
  
  
  No installation. No account required just to format some JSON.
&lt;/h2&gt;

&lt;p&gt;That's another part of the idea.&lt;/p&gt;

&lt;p&gt;You shouldn't need to:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Download an application&lt;/li&gt;
&lt;li&gt;Create an account&lt;/li&gt;
&lt;li&gt;Configure a workspace&lt;/li&gt;
&lt;li&gt;Install an extension&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;just because you need to inspect a JSON response for 30 seconds.&lt;/p&gt;

&lt;p&gt;Open the browser.&lt;/p&gt;

&lt;p&gt;Use the tool.&lt;/p&gt;

&lt;p&gt;Get the result.&lt;/p&gt;

&lt;p&gt;Move on.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'm building next
&lt;/h2&gt;

&lt;p&gt;DEVRIAN is still being actively developed.&lt;/p&gt;

&lt;p&gt;The bigger vision is to turn these individual utilities into a more complete &lt;strong&gt;privacy-first developer workspace&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;That means better workflows, more developer utilities, better ways to move between related tasks, and eventually a workspace experience that feels more like an engineering environment than a collection of online calculators.&lt;/p&gt;

&lt;p&gt;I'm also interested in making the tools genuinely useful for real development work rather than adding features just for the sake of having a bigger tool count.&lt;/p&gt;

&lt;h2&gt;
  
  
  I want developer feedback
&lt;/h2&gt;

&lt;p&gt;If you work with APIs, authentication, frontend development, backend development, security, or just spend too much time opening tiny utility websites, I'd genuinely like to know:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What developer utility do you use every week that you wish was faster, cleaner, or more private?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;And if you try DEVRIAN:&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://devrian.in/" rel="noopener noreferrer"&gt;https://devrian.in/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Try a few tools and tell me what feels useful, what feels unnecessary, and what's missing.&lt;/p&gt;

&lt;p&gt;I'm building this for developers, so real developer feedback is much more valuable than another feature idea written in isolation.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;DEVRIAN — privacy-first developer tools, running directly in your browser.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://devrian.in/" rel="noopener noreferrer"&gt;https://devrian.in/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>security</category>
      <category>devtools</category>
    </item>
  </channel>
</rss>
