<?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: Mu Micro</title>
    <description>The latest articles on DEV Community by Mu Micro (@mumicrotools).</description>
    <link>https://dev.to/mumicrotools</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%2F3923619%2F6c757b8b-218e-4fd7-ab35-6cc598405e42.png</url>
      <title>DEV Community: Mu Micro</title>
      <link>https://dev.to/mumicrotools</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mumicrotools"/>
    <language>en</language>
    <item>
      <title>npm outdated won't tell you if a package is abandoned — so I built `stale-deps`</title>
      <dc:creator>Mu Micro</dc:creator>
      <pubDate>Mon, 11 May 2026 12:35:24 +0000</pubDate>
      <link>https://dev.to/mumicrotools/npm-outdated-wont-tell-you-if-a-package-is-abandoned-so-i-built-stale-deps-29ci</link>
      <guid>https://dev.to/mumicrotools/npm-outdated-wont-tell-you-if-a-package-is-abandoned-so-i-built-stale-deps-29ci</guid>
      <description>&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;Developers often don't realize their project dependencies have been abandoned — &lt;code&gt;npm outdated&lt;/code&gt; shows version lag but not how long ago a package was last published, leaving stale and potentially vulnerable packages silently lurking in codebases.&lt;/p&gt;

&lt;h2&gt;
  
  
  As a solution, I created &lt;code&gt;stale-deps&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;Scan your package.json for packages that haven't been updated in a while — spot potentially abandoned npm packages instantly. Zero-dependency Node.js:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx stale-deps
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Checking 12 packages (threshold: 365 days)...

⚠  3 stale packages found:

  PACKAGE    VERSION  LAST UPDATED   DAYS AGO
  node-uuid  1.4.8    2017-03-11      2982d  (8y 1m)
  request    2.88.2   2020-02-14      1912d  (5y 3m)
  colors     1.4.0    2021-01-16      1576d  (4y 3m)

✓ 9 packages recently updated.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;Hits the npm registry public JSON API for each dep, gets &lt;code&gt;_npmPublishTime&lt;/code&gt;, computes age, outputs a sorted table. Batches 10 requests at a time. Zero dependencies.&lt;/p&gt;




&lt;p&gt;Part of &lt;a href="https://anishpunati.github.io/mumicro/" rel="noopener noreferrer"&gt;µ micro&lt;/a&gt; — one new developer CLI tool shipped every day.&lt;/p&gt;

</description>
      <category>node</category>
      <category>cli</category>
      <category>devtools</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
