<?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: Saravanan S</title>
    <description>The latest articles on DEV Community by Saravanan S (@saravanan_s).</description>
    <link>https://dev.to/saravanan_s</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%2F3831787%2F0a6a6d25-1e18-49f3-952f-f6da116a0d92.jpg</url>
      <title>DEV Community: Saravanan S</title>
      <link>https://dev.to/saravanan_s</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/saravanan_s"/>
    <language>en</language>
    <item>
      <title>I built a free robots.txt generator &amp; tester (no login, client-side)</title>
      <dc:creator>Saravanan S</dc:creator>
      <pubDate>Mon, 30 Mar 2026 17:43:05 +0000</pubDate>
      <link>https://dev.to/saravanan_s/i-built-a-privacy-first-robotstxt-generator-100-browser-side-no-login-227c</link>
      <guid>https://dev.to/saravanan_s/i-built-a-privacy-first-robotstxt-generator-100-browser-side-no-login-227c</guid>
      <description>&lt;p&gt;I built a free robots.txt tool that lets you:&lt;/p&gt;

&lt;p&gt;• Generate robots.txt visually&lt;br&gt;
• Validate syntax instantly&lt;br&gt;
• Test if specific URLs are blocked or allowed&lt;/p&gt;

&lt;p&gt;No login. No data upload. Everything runs in your browser.&lt;/p&gt;

&lt;p&gt;👉 Try it: &lt;a href="https://robotstxtgenerator.io" rel="noopener noreferrer"&gt;https://robotstxtgenerator.io&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Would love feedback from developers and SEO folks 🙌&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>seo</category>
      <category>opensource</category>
    </item>
    <item>
      <title>I built 180+ free browser-side developer tools — no login, no data uploads</title>
      <dc:creator>Saravanan S</dc:creator>
      <pubDate>Wed, 18 Mar 2026 17:09:45 +0000</pubDate>
      <link>https://dev.to/saravanan_s/i-built-180-free-browser-side-developer-tools-no-login-no-data-uploads-4f3f</link>
      <guid>https://dev.to/saravanan_s/i-built-180-free-browser-side-developer-tools-no-login-no-data-uploads-4f3f</guid>
      <description>&lt;p&gt;I got tired of having 12 different browser tabs open for developer tools.&lt;/p&gt;

&lt;p&gt;One tab for JSON formatting. Another for Base64. One for regex testing.&lt;br&gt;
One for JWT decoding. Another for converting that MySQL CLI output into&lt;br&gt;
something readable...&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;&lt;a href="https://devy.tools" rel="noopener noreferrer"&gt;Devy Tools&lt;/a&gt;&lt;/strong&gt; — 180+ free developer utilities in a single website.&lt;/p&gt;
&lt;h2&gt;
  
  
  The one thing that makes it different
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Everything runs 100% in your browser.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;No server. No data uploads. No account required. Your API keys, JWT tokens,&lt;br&gt;
database output, and sensitive configs never leave your device — ever.&lt;/p&gt;

&lt;p&gt;Most online tools quietly send your data to their servers. Devy Tools uses&lt;br&gt;
the Web Crypto API and standard browser APIs to do all processing locally.&lt;br&gt;
You can even use it offline after the first load.&lt;/p&gt;
&lt;h2&gt;
  
  
  What's inside
&lt;/h2&gt;
&lt;h3&gt;
  
  
  🗂️ Data Conversion
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;CSV ↔ JSON ↔ XML&lt;/strong&gt; — bi-directional converters&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;CSV → HTML Table&lt;/strong&gt; — paste CSV, get a styled table with 7 themes&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;JSON → HTML Table&lt;/strong&gt; — supports arrays of objects, 2D arrays, single objects&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;XML → HTML Table&lt;/strong&gt; — auto-detects repeating elements&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MySQL CLI → HTML Table&lt;/strong&gt; — paste the &lt;code&gt;+----+------+&lt;/code&gt; output directly&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;HTML Table → CSV / JSON / XML&lt;/strong&gt; — scrape any web table and export it&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  🔐 Security &amp;amp; Cryptography
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;AES Encrypt / Decrypt&lt;/li&gt;
&lt;li&gt;HMAC Generator&lt;/li&gt;
&lt;li&gt;Bcrypt Hash Generator&lt;/li&gt;
&lt;li&gt;SHA-256 / SHA-512&lt;/li&gt;
&lt;li&gt;JWT Decoder&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  🔤 Encoding &amp;amp; Decoding
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Base64 Encoder / Decoder&lt;/li&gt;
&lt;li&gt;URL Encoder / Decoder&lt;/li&gt;
&lt;li&gt;HTML Entity Encoder&lt;/li&gt;
&lt;li&gt;Unicode Converter&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  ⚙️ DevOps &amp;amp; Infrastructure
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Dockerfile Generator&lt;/li&gt;
&lt;li&gt;Docker Compose Generator&lt;/li&gt;
&lt;li&gt;Kubernetes YAML Generator&lt;/li&gt;
&lt;li&gt;.gitignore Generator&lt;/li&gt;
&lt;li&gt;Cron Expression Builder&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  🤖 AI &amp;amp; LLM Tools
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Token Counter&lt;/li&gt;
&lt;li&gt;Prompt Template Builder&lt;/li&gt;
&lt;li&gt;JSON to TypeScript Interface Generator&lt;/li&gt;
&lt;li&gt;System Prompt Generator&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  🎨 CSS &amp;amp; Design
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;CSS Flexbox Generator&lt;/li&gt;
&lt;li&gt;CSS Gradient Generator&lt;/li&gt;
&lt;li&gt;CSS Box Shadow Generator&lt;/li&gt;
&lt;li&gt;Color Contrast Checker&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;...and 130+ more tools across regex, SQL, networking, text processing,&lt;br&gt;
and developer productivity.&lt;/p&gt;
&lt;h2&gt;
  
  
  The HTML Table tools are my favourite
&lt;/h2&gt;

&lt;p&gt;The MySQL CLI → HTML Table converter is something I haven't seen done well&lt;br&gt;
anywhere else. You copy-paste the raw terminal output:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;+------+---------------+------------+---------+
| id | name | department | salary |
+------+---------------+------------+---------+
| 1 | Alice Chen | Engineering| 120000 |
| 2 | Bob Smith | Marketing | 85000 |
+------+---------------+------------+---------+
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And you instantly get a styled, responsive HTML table with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;7 visual themes (Clean, Dark, Striped, Ocean, Sunset, Forest, Minimal)&lt;/li&gt;
&lt;li&gt;Configurable header/data alignment&lt;/li&gt;
&lt;li&gt;Hover highlighting&lt;/li&gt;
&lt;li&gt;Responsive scroll for mobile&lt;/li&gt;
&lt;li&gt;Download as a self-contained &lt;code&gt;.html&lt;/code&gt; file&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No library needed. No external CSS. Everything is inline.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tech stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;React + Vite&lt;/strong&gt; — fast SPA with lazy-loaded tool chunks&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Web Crypto API&lt;/strong&gt; — for AES, HMAC, SHA — all native, no libraries&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DOMParser&lt;/strong&gt; — for XML and HTML table parsing&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Zero backend&lt;/strong&gt; — static hosting, all logic in the client&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What's coming
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;More language/framework-specific generators&lt;/li&gt;
&lt;li&gt;Pro plan features: favourites, history, ad-free at &lt;a href="https://pro.devy.tools" rel="noopener noreferrer"&gt;pro.devy.tools&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Blog with tool tutorials and use-case guides&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;👉 &lt;strong&gt;&lt;a href="https://devy.tools" rel="noopener noreferrer"&gt;devy.tools&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Everything is free. No signup. No catch.&lt;/p&gt;

&lt;p&gt;If you find a tool missing, open the site and use the feedback button —&lt;br&gt;
I'm actively adding new tools every week.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built by &lt;a href="https://clinicmeet.com" rel="noopener noreferrer"&gt;Clinic Meet&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

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