<?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: Soabbar</title>
    <description>The latest articles on DEV Community by Soabbar (@soabbar).</description>
    <link>https://dev.to/soabbar</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%2F3837245%2Fc94d74f2-748a-4d5d-a162-b4885dde83d4.png</url>
      <title>DEV Community: Soabbar</title>
      <link>https://dev.to/soabbar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/soabbar"/>
    <language>en</language>
    <item>
      <title>Depick: see the changelog before you update, never leave the terminal</title>
      <dc:creator>Soabbar</dc:creator>
      <pubDate>Sat, 21 Mar 2026 15:37:22 +0000</pubDate>
      <link>https://dev.to/soabbar/depick-see-the-changelog-before-you-update-never-leave-the-terminal-5c46</link>
      <guid>https://dev.to/soabbar/depick-see-the-changelog-before-you-update-never-leave-the-terminal-5c46</guid>
      <description>&lt;p&gt;Every few weeks I open a project, run &lt;code&gt;bun outdated&lt;/code&gt; or &lt;code&gt;npm outdated&lt;/code&gt;, and stare at a list of packages. Some are patch bumps, safe to apply. Some are minor. Some are major. And for every one I'm not sure about, I open a browser tab, find the GitHub releases page, skim the changelog, close the tab, go back to the terminal, type the install command manually.&lt;/p&gt;

&lt;p&gt;That workflow is fine. It's just slow, repetitive, and surprisingly easy to get wrong.&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;depick&lt;/strong&gt;, a terminal UI that puts the changelog right next to the package list so you can review and apply updates without ever leaving your terminal.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it looks like
&lt;/h2&gt;

&lt;p&gt;Run &lt;code&gt;depick&lt;/code&gt; in any project directory. It scans for outdated packages, fetches release notes for all of them concurrently, then opens a TUI with two panels side by side:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Left:&lt;/strong&gt; the package list with risk classification, version changes, and selection toggles&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Right:&lt;/strong&gt; the release notes for whatever package you're hovering on, rendered as Markdown&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fay0k30th8ohgbv0vkylx.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fay0k30th8ohgbv0vkylx.gif" alt="depick quick review" width="760" height="570"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Every package gets a risk label: &lt;code&gt;patch&lt;/code&gt;, &lt;code&gt;minor&lt;/code&gt;, &lt;code&gt;major&lt;/code&gt;, or &lt;code&gt;0.x minor&lt;/code&gt; for pre-1.0 packages where minor bumps can still break things. Patch updates are pre-selected by default. Major ones start unselected and need a deliberate choice.&lt;/p&gt;

&lt;p&gt;Press &lt;code&gt;x&lt;/code&gt; and you get a review screen with every planned change and the exact command before anything runs. Confirm and it applies them one by one with live output.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Rust and a TUI
&lt;/h2&gt;

&lt;p&gt;The workflow lives in the terminal so the fix should too. I wanted something that felt native, no Electron, no browser tab, just keyboard-driven and fast. Rust with &lt;code&gt;ratatui&lt;/code&gt; and &lt;code&gt;crossterm&lt;/code&gt; was the obvious choice. The binary is 3.5MB stripped and starts in under 200ms.&lt;/p&gt;

&lt;h2&gt;
  
  
  How the release notes work
&lt;/h2&gt;

&lt;p&gt;At startup depick fires concurrent requests to the npm registry to resolve each package's GitHub repository, then hits the GitHub Releases API to find the release matching the target version. For a typical project with 10-15 outdated packages this all resolves in about 500ms before the TUI even opens.&lt;/p&gt;

&lt;p&gt;The release body is Markdown, rendered inline with &lt;code&gt;the-other-tui-markdown&lt;/code&gt; using a custom theme that matches depick's color palette. Press &lt;code&gt;m&lt;/code&gt; to expand into a full-screen reader with scroll support.&lt;/p&gt;

&lt;p&gt;If a package has no GitHub release, depick falls back to the releases page and a guessed compare link between the current and target versions.&lt;/p&gt;

&lt;h2&gt;
  
  
  npm and bun
&lt;/h2&gt;

&lt;p&gt;depick auto-detects your package manager by checking for &lt;code&gt;bun.lock&lt;/code&gt; or &lt;code&gt;bun.lockb&lt;/code&gt;. For both it uses &lt;code&gt;npm outdated --json&lt;/code&gt; as the data source since it produces reliable structured output. For Bun repos where npm is not available it falls back to parsing &lt;code&gt;bun outdated&lt;/code&gt; text output.&lt;/p&gt;

&lt;p&gt;On apply it runs the right command for your project, &lt;code&gt;bun add pkg@^version&lt;/code&gt; or &lt;code&gt;npm install pkg@^version&lt;/code&gt;, and preserves your declared semver operator from &lt;code&gt;package.json&lt;/code&gt; by default.&lt;/p&gt;

&lt;h2&gt;
  
  
  Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;cargo &lt;span class="nb"&gt;install &lt;/span&gt;depick
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or from source:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/sofianeabbar/depick
&lt;span class="nb"&gt;cd &lt;/span&gt;depick
cargo build &lt;span class="nt"&gt;--release&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Source: &lt;a href="https://github.com/sofianeabbar/depick" rel="noopener noreferrer"&gt;github.com/sofianeabbar/depick&lt;/a&gt;&lt;br&gt;
Crate: &lt;a href="https://crates.io/crates/depick" rel="noopener noreferrer"&gt;crates.io/crates/depick&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It is at v0.1.0. The roadmap includes a disk cache for release notes, filter views, pnpm and yarn support, and a non-interactive CI mode. Feedback and contributions very welcome !&lt;/p&gt;

</description>
      <category>cli</category>
      <category>javascript</category>
      <category>productivity</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
