<?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: Declan</title>
    <description>The latest articles on DEV Community by Declan (@buildittheywillcome).</description>
    <link>https://dev.to/buildittheywillcome</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%2F4080417%2F6234aad3-9d57-4cd3-a0d1-916f9a1fff03.jpg</url>
      <title>DEV Community: Declan</title>
      <link>https://dev.to/buildittheywillcome</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/buildittheywillcome"/>
    <language>en</language>
    <item>
      <title>Building File Utilities That Run 100% in the Browser</title>
      <dc:creator>Declan</dc:creator>
      <pubDate>Thu, 20 Aug 2026 18:42:48 +0000</pubDate>
      <link>https://dev.to/buildittheywillcome/building-file-utilities-that-run-100-in-the-browser-ie4</link>
      <guid>https://dev.to/buildittheywillcome/building-file-utilities-that-run-100-in-the-browser-ie4</guid>
      <description>&lt;p&gt;I recently built filetools, a suite of file utilities that run entirely in the browser. No server backend, no file uploads, no data collection.&lt;/p&gt;

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

&lt;p&gt;Existing tools for CSV extraction, PDF manipulation, and table conversion often require uploading files or creating accounts. That creates friction and privacy concerns. But these tasks are fundamentally simple: extracting text from a PDF or parsing a CSV can happen entirely in JavaScript.&lt;/p&gt;

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

&lt;p&gt;filetools is a collection of single-purpose utilities:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;PDF Tools:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Merge, split, rotate PDFs&lt;/li&gt;
&lt;li&gt;Extract tables from PDFs to CSV&lt;/li&gt;
&lt;li&gt;Convert bank statements to CSV&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Data Tools:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Extract tables from HTML to CSV or JSON&lt;/li&gt;
&lt;li&gt;Convert between XLSX, JSON, YAML, and CSV&lt;/li&gt;
&lt;li&gt;Remove duplicate lines, sort CSV files, merge/compare data files&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each tool is its own page, targeting one specific task without bloat.&lt;/p&gt;

&lt;h2&gt;
  
  
  Architecture
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Why static hosting?&lt;/strong&gt; Keeps infrastructure simple and costs near zero. Files are built once, served from GitHub Pages.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why client-side only?&lt;/strong&gt; User files never leave their machine. Processing is fast (no network round-trip). Privacy is the default.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tech stack:&lt;/strong&gt; vanilla JavaScript using npm libraries (pdfjs-dist, exceljs, js-yaml, pdf-lib) - no framework, no server. Each page is roughly 5-15KB gzipped.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Design:&lt;/strong&gt; Started with demand mining, looking at actual Google search queries and autocomplete suggestions to pick which tools to build first.&lt;/p&gt;

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

&lt;p&gt;Live site: &lt;a href="https://usefiletools.com/?utm_source=dev.to&amp;amp;utm_medium=article&amp;amp;utm_campaign=filetools-launch"&gt;https://usefiletools.com/?utm_source=dev.to&amp;amp;utm_medium=article&amp;amp;utm_campaign=filetools-launch&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'm building more tools based on real search demand. If there's a file utility you've always wished existed, especially for data professionals, I'd love to hear about it.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>privacy</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
