<?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: Deepak Ashok Karai</title>
    <description>The latest articles on DEV Community by Deepak Ashok Karai (@devin00100).</description>
    <link>https://dev.to/devin00100</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%2F3841005%2F55c5af4e-52ee-4aa8-bb1a-9232a1e248cc.png</url>
      <title>DEV Community: Deepak Ashok Karai</title>
      <link>https://dev.to/devin00100</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/devin00100"/>
    <language>en</language>
    <item>
      <title>API Route Lister - The Ultimate CLI Tool for Discovering API Routes</title>
      <dc:creator>Deepak Ashok Karai</dc:creator>
      <pubDate>Tue, 24 Mar 2026 03:43:51 +0000</pubDate>
      <link>https://dev.to/devin00100/api-route-lister-the-ultimate-cli-tool-for-discovering-api-routes-3111</link>
      <guid>https://dev.to/devin00100/api-route-lister-the-ultimate-cli-tool-for-discovering-api-routes-3111</guid>
      <description>&lt;p&gt;Ever wondered how many API endpoints your application has? I built a CLI tool that scans your source code and lists all your routes - with code preview, search, and filtering!&lt;/p&gt;

&lt;h2&gt;
  
  
  🚀 What is API Route Lister?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;API Route Lister&lt;/strong&gt; is a command-line tool that automatically scans your codebase and discovers all API endpoints. It supports multiple frameworks including Express, Fastify, Next.js, Hapi, and Koa.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;🔍 Auto-Detection - Automatically detects your framework&lt;/li&gt;
&lt;li&gt;💻 Code Preview - View endpoint code directly in CLI&lt;/li&gt;
&lt;li&gt;🎮 Interactive Mode - Browse with keyboard navigation&lt;/li&gt;
&lt;li&gt;🔎 Search &amp;amp; Filter - Find routes by path or HTTP method&lt;/li&gt;
&lt;li&gt;📊 Multiple Views - Table, List, or Tree format&lt;/li&gt;
&lt;li&gt;📤 Export - JSON and Markdown output&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  📦 Installation
&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; &lt;span class="nt"&gt;-g&lt;/span&gt; api-route-lister
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  🚀 Quick Start
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;api-route-lister ./src
api-route-lister ./src &lt;span class="nt"&gt;-i&lt;/span&gt;
api-route-lister ./src &lt;span class="nt"&gt;-o&lt;/span&gt; tree &lt;span class="nt"&gt;-c&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  🎮 Interactive Mode Controls
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[j] Next  [k] Prev  [v] View Code  [g] Go To  [/] Search  [f] Filter  [r] Reset  [q] Quit
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Quick Commands
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;g 50 - Go to route #50&lt;/li&gt;
&lt;li&gt;/ users - Search for users&lt;/li&gt;
&lt;li&gt;f GET - Filter GET routes only&lt;/li&gt;
&lt;li&gt;v - View selected route code&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  📋 Options
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Option&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;-f, --framework&lt;/td&gt;
&lt;td&gt;Framework (auto, express, fastify, nextjs, hapi, koa)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;-o, --output&lt;/td&gt;
&lt;td&gt;Output format (table, list, tree)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;-c, --code&lt;/td&gt;
&lt;td&gt;Show endpoint code&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;-i, --interactive&lt;/td&gt;
&lt;td&gt;Interactive TUI mode&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;--json&lt;/td&gt;
&lt;td&gt;Output as JSON&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;-m, --markdown&lt;/td&gt;
&lt;td&gt;Output as Markdown&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Get It Now
&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; &lt;span class="nt"&gt;-g&lt;/span&gt; api-route-lister
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://www.npmjs.com/package/api-route-lister" rel="noopener noreferrer"&gt;npm&lt;/a&gt; | &lt;a href="https://github.com/devin00100/API-Route-Lister" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Built with ❤️ by Deepak Ashok Karai&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>node</category>
      <category>cli</category>
    </item>
  </channel>
</rss>
