<?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: NFORSHIFU234 Dev</title>
    <description>The latest articles on DEV Community by NFORSHIFU234 Dev (nforshifu234dev).</description>
    <link>https://dev.to/nforshifu234dev</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%2Forganization%2Fprofile_image%2F11227%2F9a2da646-4bd3-442b-87f1-e6ec5dcbebb7.png</url>
      <title>DEV Community: NFORSHIFU234 Dev</title>
      <link>https://dev.to/nforshifu234dev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nforshifu234dev"/>
    <language>en</language>
    <item>
      <title>NFSFU234 Open Source Day: Three Tools, One Scope</title>
      <dc:creator>Nyuiring-yoh R. Shifu-Nfor </dc:creator>
      <pubDate>Tue, 25 Aug 2026 17:13:36 +0000</pubDate>
      <link>https://dev.to/nforshifu234dev/nfsfu234-open-source-day-three-tools-one-scope-1j7e</link>
      <guid>https://dev.to/nforshifu234dev/nfsfu234-open-source-day-three-tools-one-scope-1j7e</guid>
      <description>&lt;p&gt;Today's NFSFU234 Open Source Day — the first one we've run. FormValidation and TourGuide, previously two separate unscoped npm packages built years apart, are moving under the &lt;code&gt;@nfsfu234&lt;/code&gt; scope. ShotSweep, a new CLI for visual regression testing, launches scoped from day one. For the first time, all three live under one namespace.&lt;/p&gt;

&lt;p&gt;Here's what's actually in each release.&lt;/p&gt;

&lt;h2&gt;
  
  
  ShotSweep — new, v1.0.0
&lt;/h2&gt;

&lt;p&gt;A CLI that captures screenshots of a site and diffs them between runs. A build can pass, every test can pass, a page can return 200 — and still look broken visually. This closes that gap.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; @nfsfu234/shotsweep

shotsweep capture &lt;span class="nt"&gt;--sitemap&lt;/span&gt; https://example.com/sitemap.xml &lt;span class="nt"&gt;--viewport&lt;/span&gt; 1440x900 &lt;span class="nt"&gt;--dark&lt;/span&gt;
shotsweep diff before/manifest.json after/manifest.json
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Full sitemap capture, including sitemap indexes&lt;/li&gt;
&lt;li&gt;Full-page or sectioned screenshots, multiple viewports, light/dark emulation per run&lt;/li&gt;
&lt;li&gt;Auth support: form login with saved sessions, bearer tokens, custom headers, cookies&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;--replace-origin&lt;/code&gt; to point a production sitemap at localhost/staging without maintaining a second URL list&lt;/li&gt;
&lt;li&gt;Deterministic pixel diffing (&lt;code&gt;shotsweep diff&lt;/code&gt;) with configurable thresholds, non-zero exit on a real regression — built to gate CI&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;--resume&lt;/code&gt;, &lt;code&gt;--concurrency&lt;/code&gt;, &lt;code&gt;--retries&lt;/code&gt; for large sites; &lt;code&gt;--describe&lt;/code&gt; for an AI-ready run summary (the diff decision itself stays fully deterministic)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We ran it against our own docs site before shipping: 28 routes, light and dark mode, 136 manifest entries per run, 0 capture errors on either run.&lt;/p&gt;

&lt;p&gt;Docs: &lt;a href="https://shotsweep.nforshifu234dev.com" rel="noopener noreferrer"&gt;https://shotsweep.nforshifu234dev.com&lt;/a&gt;&lt;br&gt;
Repo: &lt;a href="https://github.com/nforshifu234dev/shotsweep" rel="noopener noreferrer"&gt;https://github.com/nforshifu234dev/shotsweep&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  TourGuide v2
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; @nfsfu234/tour-guide
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;defineConfig()&lt;/code&gt; + &lt;code&gt;&amp;lt;TourProvider&amp;gt;&lt;/code&gt; for shared config across multiple tours instead of repeating props per instance&lt;/li&gt;
&lt;li&gt;Real accessibility pass: focus trapping, keyboard nav, ARIA roles, screen-reader announcements&lt;/li&gt;
&lt;li&gt;First real automated test suite (Vitest)&lt;/li&gt;
&lt;li&gt;Tooltip positioning fixes near viewport edges; highlight cleanup now correctly restores a target element's original inline styles after a tour ends&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;⚠️ Breaking: package renamed from &lt;code&gt;nfsfu234-tour-guide&lt;/code&gt; to &lt;code&gt;@nfsfu234/tour-guide&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Docs: &lt;a href="https://tourguide.nforshifu234dev.com" rel="noopener noreferrer"&gt;https://tourguide.nforshifu234dev.com&lt;/a&gt;&lt;br&gt;
Repo: &lt;a href="https://github.com/nforshifu234dev/nfsfu234-tour-guide" rel="noopener noreferrer"&gt;https://github.com/nforshifu234dev/nfsfu234-tour-guide&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  FormValidation v3
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; @nfsfu234/form-validation
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The largest release in this library's history:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;.submit()&lt;/code&gt;, &lt;code&gt;.validate()&lt;/code&gt;, and &lt;code&gt;.validateInput()&lt;/code&gt; are now consistently &lt;code&gt;async&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;File/image upload validation (type, size, dimensions)&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;configureForms()&lt;/code&gt; / &lt;code&gt;autoInit()&lt;/code&gt; for site-wide validation rules across multiple forms from one config&lt;/li&gt;
&lt;li&gt;Real Jest test suite, CI-gated releases&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The change worth calling out on its own:&lt;/strong&gt; we removed client-side password hashing (&lt;code&gt;.hashPassword()&lt;/code&gt;, &lt;code&gt;.verifyPassword()&lt;/code&gt;, &lt;code&gt;.passwordMatch()&lt;/code&gt;, and the &lt;code&gt;bcryptjs&lt;/code&gt; dependency) entirely. It never protected a password in transit — that's what TLS and your backend are for — so it was providing the appearance of security without the substance. Not a bugfix. A feature we decided shouldn't have existed.&lt;/p&gt;

&lt;p&gt;Docs: &lt;a href="https://formvalidation.nforshifu234dev.com" rel="noopener noreferrer"&gt;https://formvalidation.nforshifu234dev.com&lt;/a&gt;&lt;br&gt;
Repo: &lt;a href="https://github.com/nforshifu234dev/nfsfu234-form-validation" rel="noopener noreferrer"&gt;https://github.com/nforshifu234dev/nfsfu234-form-validation&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why one scope matters more than any single feature here
&lt;/h2&gt;

&lt;p&gt;These three tools were built at different points over several years as separate, unrelated packages. Getting them under one &lt;code&gt;@nfsfu234&lt;/code&gt; namespace isn't a technical achievement so much as a bookkeeping one — but it's the thing that turns "three tools I happened to build" into "an ecosystem," and that distinction is doing real work for how we plan what comes next.&lt;/p&gt;

&lt;p&gt;All three are MIT licensed and open for issues/PRs starting today. If you try one and something's broken, that's useful — open an issue.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>javascript</category>
      <category>react</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
