<?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: adilmakhdoom44</title>
    <description>The latest articles on DEV Community by adilmakhdoom44 (@adilmakhdoom44).</description>
    <link>https://dev.to/adilmakhdoom44</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%2F4012794%2F51e130c4-777c-40c7-b778-d2937b250d83.png</url>
      <title>DEV Community: adilmakhdoom44</title>
      <link>https://dev.to/adilmakhdoom44</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/adilmakhdoom44"/>
    <language>en</language>
    <item>
      <title>I Built a Free Open-Source SEO Checker Tool (Works with WordPress, Showit, Wix and More)</title>
      <dc:creator>adilmakhdoom44</dc:creator>
      <pubDate>Thu, 02 Jul 2026 21:48:33 +0000</pubDate>
      <link>https://dev.to/adilmakhdoom44/i-built-a-free-open-source-seo-checker-tool-works-with-wordpress-showit-wix-and-more-1ff2</link>
      <guid>https://dev.to/adilmakhdoom44/i-built-a-free-open-source-seo-checker-tool-works-with-wordpress-showit-wix-and-more-1ff2</guid>
      <description>&lt;p&gt;Most free SEO tools online either require a sign-up, hit you with paywalls after the first check, or only work for WordPress sites. I got tired of it, so I built my own.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Live tool:&lt;/strong&gt; &lt;a href="https://adilmakhdoom44.github.io/seo-checker/" rel="noopener noreferrer"&gt;https://adilmakhdoom44.github.io/seo-checker/&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;GitHub repo:&lt;/strong&gt; &lt;a href="https://github.com/adilmakhdoom44/seo-checker" rel="noopener noreferrer"&gt;https://github.com/adilmakhdoom44/seo-checker&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Zero sign-up. Zero API keys. Fully open source.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I Built This
&lt;/h2&gt;

&lt;p&gt;I'm a Showit website designer and SEO specialist at &lt;a href="https://theadil.me/" rel="noopener noreferrer"&gt;theadil.me&lt;/a&gt;. Most of my clients come from platforms like Showit, WordPress, Wix, and Squarespace. Every time I audit a site, I needed a fast way to check the basics: is there an H1? Is the meta description the right length? Is the sitemap accessible?&lt;/p&gt;

&lt;p&gt;The existing free tools either:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cap you at 1-2 checks per day without an account&lt;/li&gt;
&lt;li&gt;Don't support Showit or other non-WordPress platforms&lt;/li&gt;
&lt;li&gt;Show you a "score" with zero actionable detail&lt;/li&gt;
&lt;li&gt;Require you to install a plugin or browser extension&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So I built a single HTML file that does 20+ checks instantly, in the browser, with no backend.&lt;/p&gt;




&lt;h2&gt;
  
  
  What It Checks
&lt;/h2&gt;

&lt;p&gt;The tool runs four categories of checks:&lt;/p&gt;

&lt;h3&gt;
  
  
  Technical SEO
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;HTTPS enabled&lt;/li&gt;
&lt;li&gt;robots.txt accessible and has content&lt;/li&gt;
&lt;li&gt;sitemap.xml accessible and valid&lt;/li&gt;
&lt;li&gt;Canonical tag present&lt;/li&gt;
&lt;li&gt;Viewport meta tag (mobile-friendliness signal)&lt;/li&gt;
&lt;li&gt;Favicon present&lt;/li&gt;
&lt;li&gt;404 error handling works correctly&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  On-Page SEO
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Meta title length (50-60 characters is ideal)&lt;/li&gt;
&lt;li&gt;Meta description length (150-160 characters)&lt;/li&gt;
&lt;li&gt;H1 tag count (exactly one is best practice)&lt;/li&gt;
&lt;li&gt;Image alt text (all images should have non-empty alt attributes)&lt;/li&gt;
&lt;li&gt;Word count estimate (500+ words signals content depth)&lt;/li&gt;
&lt;li&gt;Internal link count (5+ internal links)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Social and Schema
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Open Graph tags (og:title, og:description, og:image)&lt;/li&gt;
&lt;li&gt;Twitter Card tags&lt;/li&gt;
&lt;li&gt;JSON-LD or microdata schema markup&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Performance (via Google PageSpeed Insights API)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;PageSpeed mobile score&lt;/li&gt;
&lt;li&gt;Largest Contentful Paint (LCP)&lt;/li&gt;
&lt;li&gt;Cumulative Layout Shift (CLS)&lt;/li&gt;
&lt;li&gt;Total Blocking Time (TBT)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each check returns a pass, warning, or fail status, the actual value found on the page, and a one-line fix tip if something is wrong.&lt;/p&gt;




&lt;h2&gt;
  
  
  How It Works Technically
&lt;/h2&gt;

&lt;p&gt;The whole thing is three files: index.html, style.css, and script.js. No npm, no build step, no Node.js.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Fetching external pages:&lt;/strong&gt; I used the &lt;a href="https://allorigins.win/" rel="noopener noreferrer"&gt;allorigins.win&lt;/a&gt; CORS proxy to fetch the raw HTML of any URL the user enters. This lets the tool work client-side without a backend.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Parsing the HTML:&lt;/strong&gt; Once the HTML string comes back from the proxy, I pass it to &lt;code&gt;DOMParser&lt;/code&gt; to get a queryable document object. From there it's standard DOM queries: &lt;code&gt;querySelector('title')&lt;/code&gt;, &lt;code&gt;querySelectorAll('img')&lt;/code&gt;, etc.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Performance data:&lt;/strong&gt; The PageSpeed Insights API v5 is free and doesn't require an API key for basic usage. I call it with &lt;code&gt;?strategy=mobile&lt;/code&gt; and pull the LCP, CLS, TBT, and overall score from the response.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Scoring:&lt;/strong&gt; Each check is worth 1 point (pass), 0.5 points (warning), or 0 points (fail). The final score is normalized to 0-100 and displayed as an animated SVG ring.&lt;/p&gt;




&lt;h2&gt;
  
  
  It Works on Every Platform
&lt;/h2&gt;

&lt;p&gt;This is the part I care most about. The tool does not care what CMS or website builder your site uses. It fetches the rendered HTML output, which looks the same whether the site was built on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;WordPress&lt;/strong&gt; with Yoast or RankMath&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Showit&lt;/strong&gt; with a custom design&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Wix&lt;/strong&gt; or &lt;strong&gt;Squarespace&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Webflow&lt;/strong&gt;, &lt;strong&gt;Ghost&lt;/strong&gt;, or a static site&lt;/li&gt;
&lt;li&gt;A custom-coded HTML site&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If the page is publicly accessible, the tool can audit it.&lt;/p&gt;




&lt;h2&gt;
  
  
  SEO Score and What It Means
&lt;/h2&gt;

&lt;p&gt;I built the scoring around what actually moves rankings:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A perfect SEO score on this tool means your on-page fundamentals are solid&lt;/li&gt;
&lt;li&gt;Warnings flag things like a title that is slightly too long or a meta description that is missing&lt;/li&gt;
&lt;li&gt;Fails flag critical issues like no H1, no sitemap, or missing Open Graph tags&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The score is not a vanity metric. Every point maps to a specific, fixable issue.&lt;/p&gt;




&lt;h2&gt;
  
  
  Export to CSV
&lt;/h2&gt;

&lt;p&gt;After running an audit, you can click Export CSV to download a spreadsheet with all results: section, check name, status, value found, and fix tip. Useful for sending to a client or tracking changes over time.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://adilmakhdoom44.github.io/seo-checker/" rel="noopener noreferrer"&gt;https://adilmakhdoom44.github.io/seo-checker/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/adilmakhdoom44/seo-checker" rel="noopener noreferrer"&gt;https://github.com/adilmakhdoom44/seo-checker&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Run it on your own site and let me know what score you get. If you find a bug or want to add a check, pull requests are open.&lt;/p&gt;




&lt;p&gt;I also built a dedicated &lt;a href="http://showitanalyzer.com/" rel="noopener noreferrer"&gt;Showit Website Analyzer&lt;/a&gt; for Showit-specific audits if you are a Showit designer or have a Showit site.&lt;/p&gt;

&lt;p&gt;Built by &lt;a href="https://theadil.me/" rel="noopener noreferrer"&gt;Adil Makhdoom&lt;/a&gt; -- Showit Website Designer and SEO Specialist.&lt;/p&gt;

</description>
      <category>seo</category>
      <category>webdev</category>
      <category>opensource</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
