<?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: takundanashebmuchena-pixel</title>
    <description>The latest articles on DEV Community by takundanashebmuchena-pixel (@takundanashebmuchenapixel).</description>
    <link>https://dev.to/takundanashebmuchenapixel</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%2F3972666%2F446296cc-429d-4f2b-8a69-169bf06e4557.png</url>
      <title>DEV Community: takundanashebmuchena-pixel</title>
      <link>https://dev.to/takundanashebmuchenapixel</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/takundanashebmuchenapixel"/>
    <language>en</language>
    <item>
      <title>eth-rpc-errors is abandoned (850K+ weekly downloads) — here's the drop-in replacement</title>
      <dc:creator>takundanashebmuchena-pixel</dc:creator>
      <pubDate>Thu, 18 Jun 2026 04:11:06 +0000</pubDate>
      <link>https://dev.to/takundanashebmuchenapixel/eth-rpc-errors-is-abandoned-850k-weekly-downloads-heres-the-drop-in-replacement-1g6n</link>
      <guid>https://dev.to/takundanashebmuchenapixel/eth-rpc-errors-is-abandoned-850k-weekly-downloads-heres-the-drop-in-replacement-1g6n</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;If you're using &lt;code&gt;eth-rpc-errors&lt;/code&gt; in your project, &lt;br&gt;
you might not have noticed something concerning — &lt;br&gt;
&lt;strong&gt;the package hasn't been maintained in over 5 years.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Yet it still gets &lt;strong&gt;850,000+ weekly downloads.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That means hundreds of thousands of Ethereum projects &lt;br&gt;
are depending on an abandoned package. No bug fixes. &lt;br&gt;
No security patches. No responses to issues.&lt;/p&gt;

&lt;p&gt;Even MetaMask — the original creators — have moved &lt;br&gt;
away from it to &lt;code&gt;@metamask/rpc-errors&lt;/code&gt;.&lt;/p&gt;

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

&lt;p&gt;I forked it and have been actively maintaining it as:&lt;/p&gt;

&lt;p&gt;👉 &lt;code&gt;eth-rpc-errors-maintained&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Migration: One Line
&lt;/h2&gt;

&lt;p&gt;This is genuinely the easiest migration you'll ever do.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Uninstall the old package:&lt;/strong&gt;&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
bash
npm uninstall eth-rpc-errors
npm install eth-rpc-errors-maintained
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>blockchain</category>
      <category>ethereum</category>
      <category>web3</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Fix: node-sass is end-of-life — migrate to Dart Sass in one command</title>
      <dc:creator>takundanashebmuchena-pixel</dc:creator>
      <pubDate>Tue, 09 Jun 2026 03:57:55 +0000</pubDate>
      <link>https://dev.to/takundanashebmuchenapixel/fix-node-sass-is-end-of-life-migrate-to-dart-sass-in-one-command-13cg</link>
      <guid>https://dev.to/takundanashebmuchenapixel/fix-node-sass-is-end-of-life-migrate-to-dart-sass-in-one-command-13cg</guid>
      <description>&lt;p&gt;node-sass has been officially deprecated since 2022 and is now end-of-life. It breaks on every new Node.js version upgrade with the error:&lt;/p&gt;

&lt;p&gt;"Node Sass does not yet support your current environment"&lt;/p&gt;

&lt;p&gt;Yet it still gets 3 million+ downloads per week from legacy projects.&lt;/p&gt;

&lt;h2&gt;
  
  
  The fix
&lt;/h2&gt;

&lt;p&gt;I published an automated migration CLI:&lt;/p&gt;

&lt;p&gt;npm install -g node-sass-migrate&lt;/p&gt;

&lt;p&gt;Or just run it directly:&lt;/p&gt;

&lt;p&gt;npx node-sass-migrate .&lt;/p&gt;

&lt;h2&gt;
  
  
  What it does automatically
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Replaces node-sass with sass (Dart Sass) in package.json&lt;/li&gt;
&lt;li&gt;Fixes /deep/ → ::v-deep in SCSS files (Vue projects)&lt;/li&gt;
&lt;li&gt;Updates webpack.config.js, vite.config.js, and gulpfile.js references&lt;/li&gt;
&lt;li&gt;Warns about &lt;a class="mentioned-user" href="https://dev.to/import"&gt;@import&lt;/a&gt; deprecations and division operator issues&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why not just swap manually?
&lt;/h2&gt;

&lt;p&gt;Dart Sass is stricter than node-sass. These things break silently:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;/deep/ selector throws parse errors&lt;/li&gt;
&lt;li&gt;Division operator ($var / 2) is deprecated — need math.div()&lt;/li&gt;
&lt;li&gt;
&lt;a class="mentioned-user" href="https://dev.to/import"&gt;@import&lt;/a&gt; is deprecated — will be removed in Dart Sass 2.0&lt;/li&gt;
&lt;li&gt;sass-loader needs to be version 13+&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The CLI handles the safe fixes automatically and warns you about the rest.&lt;/p&gt;

&lt;h2&gt;
  
  
  After running the CLI
&lt;/h2&gt;

&lt;p&gt;Just run npm install and your project should build. If you hit errors, the full migration guide is at &lt;a href="https://nodesassmigrate.netlify.app" rel="noopener noreferrer"&gt;https://nodesassmigrate.netlify.app&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;npm: &lt;a href="https://www.npmjs.com/package/node-sass-migrate" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/node-sass-migrate&lt;/a&gt;&lt;br&gt;
GitHub: &lt;a href="https://github.com/takundanashebmuchena-pixel/node-sass-migrate" rel="noopener noreferrer"&gt;https://github.com/takundanashebmuchena-pixel/node-sass-migrate&lt;/a&gt;&lt;/p&gt;

</description>
      <category>node</category>
      <category>javascript</category>
      <category>css</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Fix: babel-plugin-transform-flow-strip-types broken in Babel 7 and 8</title>
      <dc:creator>takundanashebmuchena-pixel</dc:creator>
      <pubDate>Sun, 07 Jun 2026 15:24:45 +0000</pubDate>
      <link>https://dev.to/takundanashebmuchenapixel/fix-babel-plugin-transform-flow-strip-types-broken-in-babel-7-and-8-3i9j</link>
      <guid>https://dev.to/takundanashebmuchenapixel/fix-babel-plugin-transform-flow-strip-types-broken-in-babel-7-and-8-3i9j</guid>
      <description>&lt;p&gt;The original babel-plugin-transform-flow-strip-types hasn't been updated in 9 years and breaks silently in Babel 7 and 8 environments.&lt;/p&gt;

&lt;h2&gt;
  
  
  The fix
&lt;/h2&gt;

&lt;p&gt;I published a maintained fork that works as a drop-in replacement:&lt;/p&gt;

&lt;p&gt;npm install --save-dev babel-plugin-transform-flow-strip-types-maintained&lt;/p&gt;

&lt;p&gt;Then update your .babelrc:&lt;/p&gt;

&lt;p&gt;{&lt;br&gt;
  "plugins": ["transform-flow-strip-types-maintained"]&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;That's it. No other changes needed.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;Babel 7 and 8 peer dependency conflicts&lt;/li&gt;
&lt;li&gt;Missing syntax plugin declaration&lt;/li&gt;
&lt;li&gt;Deprecated visitor patterns&lt;/li&gt;
&lt;li&gt;allowDeclareFields support&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Automated migration
&lt;/h2&gt;

&lt;p&gt;If you want to update your entire project automatically:&lt;/p&gt;

&lt;p&gt;npx flow-strip-migrate .&lt;/p&gt;

&lt;p&gt;This updates your package.json and babel config in one command.&lt;/p&gt;

&lt;p&gt;More info: &lt;a href="https://flowstrip.netlify.app" rel="noopener noreferrer"&gt;https://flowstrip.netlify.app&lt;/a&gt;&lt;br&gt;
npm: &lt;a href="https://www.npmjs.com/package/babel-plugin-transform-flow-strip-types-maintained" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/babel-plugin-transform-flow-strip-types-maintained&lt;/a&gt;&lt;/p&gt;

</description>
      <category>babel</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Fix: babel-plugin-transform-flow-strip-types broken in Babel 7 and 8</title>
      <dc:creator>takundanashebmuchena-pixel</dc:creator>
      <pubDate>Sun, 07 Jun 2026 15:03:04 +0000</pubDate>
      <link>https://dev.to/takundanashebmuchenapixel/fix-babel-plugin-transform-flow-strip-types-broken-in-babel-7-and-8-493l</link>
      <guid>https://dev.to/takundanashebmuchenapixel/fix-babel-plugin-transform-flow-strip-types-broken-in-babel-7-and-8-493l</guid>
      <description>&lt;p&gt;The original babel-plugin-transform-flow-strip-types hasn't been updated in 9 years and breaks silently in Babel 7 and 8 environments.&lt;/p&gt;

&lt;h2&gt;
  
  
  The fix
&lt;/h2&gt;

&lt;p&gt;I published a maintained fork that works as a drop-in replacement:&lt;/p&gt;

&lt;p&gt;npm install --save-dev babel-plugin-transform-flow-strip-types-maintained&lt;/p&gt;

&lt;p&gt;Then update your .babelrc:&lt;/p&gt;

&lt;p&gt;{&lt;br&gt;
  "plugins": ["transform-flow-strip-types-maintained"]&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;That's it. No other changes needed.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;Babel 7 and 8 peer dependency conflicts&lt;/li&gt;
&lt;li&gt;Missing syntax plugin declaration&lt;/li&gt;
&lt;li&gt;Deprecated visitor patterns&lt;/li&gt;
&lt;li&gt;allowDeclareFields support&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Automated migration
&lt;/h2&gt;

&lt;p&gt;If you want to update your entire project automatically:&lt;/p&gt;

&lt;p&gt;npx flow-strip-migrate .&lt;/p&gt;

&lt;p&gt;This updates your package.json and babel config in one command.&lt;/p&gt;

&lt;p&gt;More info: &lt;a href="https://flowstrip.netlify.app" rel="noopener noreferrer"&gt;https://flowstrip.netlify.app&lt;/a&gt;&lt;br&gt;
npm: &lt;a href="https://www.npmjs.com/package/babel-plugin-transform-flow-strip-types-maintained" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/babel-plugin-transform-flow-strip-types-maintained&lt;/a&gt;&lt;/p&gt;

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