<?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: Luis</title>
    <description>The latest articles on DEV Community by Luis (@luisssc).</description>
    <link>https://dev.to/luisssc</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%2F3835077%2F4cf2a824-2da6-40b9-b113-02ed19eba702.png</url>
      <title>DEV Community: Luis</title>
      <link>https://dev.to/luisssc</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/luisssc"/>
    <language>en</language>
    <item>
      <title>I built a Visual NPM Package Manager for VS Code</title>
      <dc:creator>Luis</dc:creator>
      <pubDate>Sat, 21 Mar 2026 10:35:09 +0000</pubDate>
      <link>https://dev.to/luisssc/i-built-a-visual-npm-package-manager-for-vs-code-32ap</link>
      <guid>https://dev.to/luisssc/i-built-a-visual-npm-package-manager-for-vs-code-32ap</guid>
      <description>&lt;p&gt;If you’ve worked with Node.js for a while, you probably know the pain.&lt;/p&gt;

&lt;p&gt;Updating dependencies usually looks like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;run &lt;code&gt;npm outdated&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;scan the terminal output
&lt;/li&gt;
&lt;li&gt;manually update versions
&lt;/li&gt;
&lt;li&gt;hope nothing breaks
&lt;/li&gt;
&lt;li&gt;google changelogs just in case
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It works… but it’s not exactly a great experience.&lt;/p&gt;

&lt;p&gt;Coming from Visual Studio, I always missed how easy this was with NuGet — just open a UI, see everything, click update, done.&lt;/p&gt;

&lt;p&gt;So I decided to build something similar for VS Code.&lt;/p&gt;




&lt;h2&gt;
  
  
  Meet NPM Visual Manager
&lt;/h2&gt;

&lt;p&gt;It’s a VS Code extension that gives you a &lt;strong&gt;proper visual interface to manage your dependencies&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Instead of juggling terminal commands, you get a clean UI where everything is in one place.&lt;/p&gt;

&lt;h2&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%2Fj863vjzke35z8vir5cam.PNG" alt=" " width="800" height="420"&gt;
&lt;/h2&gt;

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

&lt;h3&gt;
  
  
  📦 See everything at a glance
&lt;/h3&gt;

&lt;p&gt;A table view showing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;installed vs latest versions&lt;/li&gt;
&lt;li&gt;update types (major / minor / patch)&lt;/li&gt;
&lt;li&gt;security warnings&lt;/li&gt;
&lt;li&gt;dependency type (prod / dev / peer)&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  ⚡ One-click updates
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;update individual packages
&lt;/li&gt;
&lt;li&gt;or update everything at once
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No more editing &lt;code&gt;package.json&lt;/code&gt; manually.&lt;/p&gt;




&lt;h3&gt;
  
  
  🔎 Search and install packages
&lt;/h3&gt;

&lt;p&gt;Search directly from the npm registry and install without leaving the editor.&lt;/p&gt;

&lt;p&gt;No more: npm install something&lt;/p&gt;




&lt;h3&gt;
  
  
  ▶️ Run scripts easily
&lt;/h3&gt;

&lt;p&gt;There’s also a scripts panel where you can run:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;dev
&lt;/li&gt;
&lt;li&gt;build
&lt;/li&gt;
&lt;li&gt;test
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;with a single click.&lt;/p&gt;




&lt;h3&gt;
  
  
  👁️ Ignore problematic packages
&lt;/h3&gt;

&lt;p&gt;You know that one dependency that always breaks everything?&lt;/p&gt;

&lt;p&gt;You can just ignore it and keep the rest up to date.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I built it
&lt;/h2&gt;

&lt;p&gt;Honestly, it started as a personal tool.&lt;/p&gt;

&lt;p&gt;Managing dependencies in Node projects always felt more manual than it should be. The tooling is powerful, but not very visual.&lt;/p&gt;

&lt;p&gt;I wanted something that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;feels native inside VS Code
&lt;/li&gt;
&lt;li&gt;reduces context switching
&lt;/li&gt;
&lt;li&gt;makes updates less risky and more transparent
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Tech stack
&lt;/h2&gt;

&lt;p&gt;The extension is built using:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;React + Vite (inside a Webview)
&lt;/li&gt;
&lt;li&gt;VS Code Webview API
&lt;/li&gt;
&lt;li&gt;TypeScript
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal was to make it feel like a &lt;strong&gt;real part of the editor&lt;/strong&gt;, not just a basic panel.&lt;/p&gt;




&lt;h2&gt;
  
  
  Available beyond VS Code
&lt;/h2&gt;

&lt;p&gt;I also published it on Open VSX, so it works with other IDEs and editors like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cursor&lt;/li&gt;
&lt;li&gt;Kiro&lt;/li&gt;
&lt;li&gt;Antigravity&lt;/li&gt;
&lt;li&gt;VSCodium and other compatible environments
&lt;/li&gt;
&lt;/ul&gt;




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

&lt;p&gt;👉 VS Code Marketplace&lt;br&gt;
&lt;a href="https://marketplace.visualstudio.com/items?itemName=LuisClementDev.npm-visual-manager" rel="noopener noreferrer"&gt;https://marketplace.visualstudio.com/items?itemName=LuisClementDev.npm-visual-manager&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;👉 Open VSX&lt;br&gt;
&lt;a href="https://open-vsx.org/extension/LuisClementDev/npm-visual-manager" rel="noopener noreferrer"&gt;https://open-vsx.org/extension/LuisClementDev/npm-visual-manager&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;👉 GitHub (feel free to drop a ⭐ if you find it useful)&lt;br&gt;
&lt;a href="https://github.com/luisssc/npm-visual-manager" rel="noopener noreferrer"&gt;https://github.com/luisssc/npm-visual-manager&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Feedback welcome
&lt;/h2&gt;

&lt;p&gt;I'm actively improving the extension, so any feedback, ideas, or feature requests are more than welcome.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
