<?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: Ayush Niroula</title>
    <description>The latest articles on DEV Community by Ayush Niroula (@ayushniroula).</description>
    <link>https://dev.to/ayushniroula</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%2F634848%2F84e12105-389a-4a3f-829f-479a1a6fe5a6.jpeg</url>
      <title>DEV Community: Ayush Niroula</title>
      <link>https://dev.to/ayushniroula</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ayushniroula"/>
    <language>en</language>
    <item>
      <title>10,000 Times Cleaner Code Just By Using This Tool.</title>
      <dc:creator>Ayush Niroula</dc:creator>
      <pubDate>Wed, 25 Sep 2024 03:45:58 +0000</pubDate>
      <link>https://dev.to/ayushniroula/10000-times-cleaner-code-just-by-using-this-tool-19po</link>
      <guid>https://dev.to/ayushniroula/10000-times-cleaner-code-just-by-using-this-tool-19po</guid>
      <description>&lt;p&gt;Ever stared at your codebase thinking, “Wow, that’s a lot of console.log clutter!"? Or maybe you’ve spent way too much time hunting down those rogue print statements you used while debugging. Well, good news—Eradicate (era) is here to rescue you from that mess! 🦸‍♀️&lt;/p&gt;

&lt;p&gt;Era is a slick open-source tool that automatically cleans your codebase, wiping out unwanted logs, prints, and debugging statements across multiple languages. No more manual code cleanup or dealing with bloated files filled with leftover logs. It’s like Marie Kondo for your code! ✨&lt;/p&gt;

&lt;p&gt;In this story, I’m going to show you how era works, why it’s a game-changer, and how you can get started ASAP.&lt;/p&gt;

&lt;p&gt;🎯 Why Era? Because Nobody Has Time to Manually Clean Code! ⏳&lt;br&gt;
Picture this: You’re deep in the middle of a project, dropping console.log and print() statements left and right to debug your code. By the time you finish, you’ve got a sea of logs floating around your files, making it hard to see the real logic.&lt;/p&gt;

&lt;p&gt;Enter Eradicate (era). It’s like having a digital cleaning assistant that sweeps through your codebase, finds those pesky outputs, and wipes them out faster than you can say “refactor.” Whether you’re working on a personal project or contributing to a large team, era automates the boring cleanup part, so you can focus on the fun stuff — like, you know, actually coding. 😎&lt;/p&gt;

&lt;p&gt;⚡️ Key Features You’ll Love&lt;br&gt;
Multi-language support: Clean up logs in JavaScript, Python, PHP, Go, Ruby, and more. No matter the language, era has your back. 💻&lt;br&gt;
Customizable Config: You decide what gets cleaned and what stays — because not all logs deserve the boot.&lt;br&gt;
Target Specific Files/Folders: Just finished working on a feature? Run era on a single file or folder. Easy peasy.&lt;br&gt;
Ignore What Matters: Don’t want to clean certain files or directories (like node_modules)? Era makes it simple to exclude what you don’t want to touch.&lt;br&gt;
🚀 How to Get Started with Era&lt;br&gt;
Ready to clean up your code like a boss? Here’s your step-by-step guide.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Initialize Era in Your Project
First things first — you need to let era know where to get started. Run the following command to initialize era in your project:
&lt;/li&gt;
&lt;/ol&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;era init
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;This creates a shiny new erd.yaml config file in your root directory. It’s your personalized cleanup map where you define exactly what needs scrubbing.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Clean Up Logs and Prints Like a Pro
Time to make your code spotless! Run the clean command, and era will scan your project and clean out all those pesky logs:
&lt;/li&gt;
&lt;/ol&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;era clean
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;By default, era will check your erd.yaml file for cleaning rules. If it doesn’t find one, no worries—it’s got default settings ready to go. 🧼✨&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Target a Specific File or Folder
Don’t need to clean the whole project? No problem. You can target individual files or folders:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;To clean a specific file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;era remove -f path/to/yourfile.js
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or to clean a whole folder:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;era remove -d path/to/yourfolder&lt;br&gt;
&lt;/code&gt;Era will carefully check the file or folder, hunt down the unwanted logs, and leave the rest untouched. 🕵️‍♀️&lt;/p&gt;

&lt;p&gt;🔧 The Magic Behind Era’s Config File&lt;br&gt;
Let’s talk about the secret sauce: the erd.yaml configuration file. Here’s a breakdown of what it does and how you can tweak it to fit your project like a glove:yml&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Root: "."
ReportPath: "era-reports"
IgnoreKeyword:
  - "erd:ignore"
  - "erd:ignoreAll"
IgnoreFileExtensions:
  - ".exe"
  - ".dll"
  - ".zip"
  - ".tar"
IgnoreDirs:
  - "node_modules"
  - ".git"
  - "vendor"
IgnoreFiles: []
ListenType: "command"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Root: This is where era starts its search — usually your project’s root directory.&lt;br&gt;
ReportPath: After each run, era will generate a report in this directory, so you can see exactly what was cleaned. 📊&lt;br&gt;
IgnoreKeyword: Add custom tags to your code like erd:ignore to stop era from cleaning certain sections.&lt;br&gt;
IgnoreFileExtensions: These are the file types era won’t touch — think binaries or compressed files.&lt;br&gt;
IgnoreDirs: Directories like node_modules or .git are automatically excluded to save you time. No one needs to clean those, right? 😅&lt;br&gt;
ListenType: Currently, this is set to “command,” meaning era listens for cleanup commands from you. More listen types may come in the future — stay tuned!&lt;br&gt;
🎉 The Best Part: It’s Free and Open-Source!&lt;br&gt;
Yup, you heard that right. Eradicate (era) is open-source, meaning you can use it, modify it, and even contribute back to it! It’s all about helping fellow developers keep their codebases clean without the hassle.&lt;/p&gt;

&lt;p&gt;💡 Final Thoughts&lt;br&gt;
Eradicate isn’t just a tool — it’s a timesaver, a productivity booster, and a clutter-buster. Whether you’re working solo or part of a larger team, using era helps you maintain a tidy codebase with minimal effort.&lt;/p&gt;

&lt;p&gt;If you’re tired of manually cleaning up your files, give era a spin. It’s free, easy to set up, and — trust me — it’ll save you hours of time.&lt;/p&gt;

&lt;p&gt;Join the revolution! 🚀 You can find the code on Github and contribute to making this tool even better.&lt;/p&gt;

&lt;p&gt;Happy Coding! 💻✨&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>opensource</category>
      <category>javascript</category>
      <category>go</category>
    </item>
    <item>
      <title>Eradicate (era): A Powerful Open-Source Tool for Code Cleanup</title>
      <dc:creator>Ayush Niroula</dc:creator>
      <pubDate>Tue, 24 Sep 2024 01:12:56 +0000</pubDate>
      <link>https://dev.to/ayushniroula/eradicate-era-a-powerful-open-source-tool-for-code-cleanup-1b5i</link>
      <guid>https://dev.to/ayushniroula/eradicate-era-a-powerful-open-source-tool-for-code-cleanup-1b5i</guid>
      <description>&lt;p&gt;Thrilled to announce my open-source project Eradicate (era) 🎉 era is a versatile tool that simplifies cleaning and transforming codebases across multiple languages. From removing unwanted logs to customizing file cleanup, era helps developers maintain cleaner and more efficient projects.&lt;/p&gt;

&lt;p&gt;Check it out, give it a try, and contribute to making development a little bit easier for everyone! 🌟&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/wadmit/era" rel="noopener noreferrer"&gt;https://github.com/wadmit/era&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>opensource</category>
      <category>go</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
