百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
N

nvm-desktop

> 编程语言
开源

节点版本管理器桌面版 - 一个桌面应用程序,用于管理多个活动的 Node.js 版本。

1.4K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

节点版本管理器桌面版 - 一个桌面应用程序,用于管理多个活动的 Node.js 版本。

nvm-desktop

A cross-platform Node.js version manager with both:

  • GUI app (nvm-desktop) for visual management
  • CLI tool (nvmd) for terminal workflows

Supports macOS, Windows, and Linux.

English | 简体中文

Screenshot

Why use it

  • Install and uninstall Node.js versions quickly
  • Switch global Node.js version with one command/click
  • Pin Node.js versions per project
  • Keep environments isolated across Node.js versions
  • Use GUI or CLI based on your workflow

Install

Download from releases:

  • GitHub Releases

After installation, ensure these are available in terminal:

bash
nvmd -V
node -v
npm -v

Core usage (CLI-first)

1) Install a Node.js version

bash
nvmd install 20.18.0

2) List installed versions

bash
nvmd ls

3) Switch global version

bash
nvmd use 20.18.0
node -v

4) Set version for current project

bash
nvmd use 18.20.4 --project
node -v

5) Check current version

bash
nvmd current

6) Uninstall a version

bash
nvmd uninstall 16.20.2

7) Find executable path

bash
nvmd which node
nvmd which npm

Recommended project workflow

For each project:

  1. Open project root
  2. Choose Node.js version with nvmd use <version> --project
  3. Run node -v to confirm
  4. Install dependencies and develop as usual

This helps keep dependency/toolchain behavior consistent per repo.

GUI usage

In nvm-desktop, you can:

  • browse available Node.js versions
  • install/uninstall versions
  • switch global default version
  • bind Node.js versions to projects
  • manage settings such as mirror and language

If you prefer clicking over commands, most common operations are available in GUI.

Data location

nvm-desktop stores data in:

  • macOS / Linux: ~/.nvmd
  • Windows: %HOMEPATH%\.nvmd

Typical contents:

  • bin/ shims (node, npm, npx, nvmd, corepack)
  • versions/ installed Node.js runtimes
  • default global default version
  • projects.json per-project version bindings
  • setting.json app settings

FAQ

Are global npm packages shared between Node.js versions?

By default, no (environments are isolated).

To share global packages, set a common prefix:

bash
npm config set prefix "/path/to/shared-global"

GUI or CLI: which one should I use?

  • Use GUI for discovery and visual management
  • Use CLI (nvmd) for automation, scripts, and terminal-first work

Develop locally

Prerequisites:

  • Rust
  • Node.js
  • pnpm

Run:

bash
pnpm check
pnpm install
pnpm dev

Build package:

bash
pnpm build

Artifacts:

  • ./src-tauri/target/release/bundle

License

MIT

Issues· 0 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

TypeScriptnodenodejsnvmnvm-desktop

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言