<?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: kamlesh yadav</title>
    <description>The latest articles on DEV Community by kamlesh yadav (@kamlesh_yadav).</description>
    <link>https://dev.to/kamlesh_yadav</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%2F3899712%2F10f44482-48ef-4309-8e61-b43ef0a95563.jpg</url>
      <title>DEV Community: kamlesh yadav</title>
      <link>https://dev.to/kamlesh_yadav</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kamlesh_yadav"/>
    <language>en</language>
    <item>
      <title>I built shadcn/ui for the terminal — meet InkUI</title>
      <dc:creator>kamlesh yadav</dc:creator>
      <pubDate>Mon, 27 Apr 2026 07:00:07 +0000</pubDate>
      <link>https://dev.to/kamlesh_yadav/i-built-shadcnui-for-the-terminal-meet-inkui-4kda</link>
      <guid>https://dev.to/kamlesh_yadav/i-built-shadcnui-for-the-terminal-meet-inkui-4kda</guid>
      <description>&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;Every CLI I build with Ink ends up copy-pasting the same spinner from my last project. Same progress bar. Same select menu. It's boilerplate that shouldn't exist.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I built
&lt;/h2&gt;

&lt;p&gt;InkUI works exactly like shadcn/ui — run one command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx inkui add table
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You get the TypeScript source file dropped into &lt;code&gt;./components/ui/table/&lt;/code&gt; in your own project. No black-box npm dependency. You own the code. Modify anything.&lt;/p&gt;

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

&lt;p&gt;32 components across 4 categories:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Core UI&lt;/strong&gt;: Spinner, Badge, ProgressBar, TextInput, Select, MultiSelect, Table, Dialog, Toast, StatusIndicator, LoadingBar, Confirm, KeyHint, Divider, Header&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Layout &amp;amp; Navigation&lt;/strong&gt;: Tabs, Accordion, Panel, SplitPane, ScrollArea&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AI-era CLI&lt;/strong&gt;: StreamingText, TokenCounter, CodeBlock, DiffView, Typewriter&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Data &amp;amp; Power&lt;/strong&gt;: TreeView, Autocomplete, Stepper, DataTable, Gauge, Sparkline, Markdown, JSONViewer&lt;/p&gt;

&lt;h2&gt;
  
  
  The copy-paste model
&lt;/h2&gt;

&lt;p&gt;Shadcn/ui proved that owning your component source beats depending on a versioned package. The same argument holds for terminal UIs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You might need to change the spinner frame timing for your specific use case&lt;/li&gt;
&lt;li&gt;You might need a custom border style the library doesn't support&lt;/li&gt;
&lt;li&gt;You don't want a major version bump to break your deploy CLI in production&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Owning the source solves all three.&lt;/p&gt;

&lt;h2&gt;
  
  
  Theming
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="kd"&gt;type&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;InkUITheme&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;@inkui-cli/core&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;myTheme&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;InkUITheme&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="na"&gt;colors&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="na"&gt;primary&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;magenta&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="na"&gt;success&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;green&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="na"&gt;error&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;red&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="c1"&gt;// ...&lt;/span&gt;
  &lt;span class="p"&gt;},&lt;/span&gt;
  &lt;span class="na"&gt;border&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;rounded&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;

&lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;Table&lt;/span&gt; &lt;span class="na"&gt;theme&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;myTheme&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt; &lt;span class="na"&gt;columns&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;cols&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt; &lt;span class="na"&gt;data&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;rows&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx inkui list          &lt;span class="c"&gt;# see all 32 components&lt;/span&gt;
npx inkui add spinner   &lt;span class="c"&gt;# add one&lt;/span&gt;
npx inkui add &lt;span class="nt"&gt;--all&lt;/span&gt;     &lt;span class="c"&gt;# add everything&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Docs: &lt;a href="https://inkui-lib.vercel.app" rel="noopener noreferrer"&gt;https://inkui-lib.vercel.app&lt;/a&gt;&lt;br&gt;&lt;br&gt;
GitHub: &lt;a href="https://github.com/kamlesh723/InkUI" rel="noopener noreferrer"&gt;https://github.com/kamlesh723/InkUI&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feedback welcome — especially on whether the copy-paste model makes sense for terminal components the same way it does for web.&lt;/p&gt;

</description>
      <category>cli</category>
      <category>typescript</category>
      <category>node</category>
      <category>react</category>
    </item>
  </channel>
</rss>
