`node` shim loops forever in system-first mode when the system `node` is a mise shim (vp and shell `node` hang)
@liangmiQwQ 已经在做这个了。
开始于 2026年9月16日。
评估
这个 Issue 还没有评估数据。
描述
Describe the bug
On a machine that also has mise installed (its shims dir is on PATH, but no Node version is activated for the current directory, so the mise node shim falls back to the system Node), the Vite+ node shim in system-first mode hangs forever at 100% CPU.
Effects:
- Every JS-side
vpcommand hangs with no output:vp migrate,vp migrate --help,vp help migrate,vp env current. Rust-only commands (vp help,vp --version,vp env doctor,vp toolchain) work. - Because
~/.config/vite-plus/env(sourced from.zshenv/.zshrc/.profile) prepends~/.local/share/vite-plus/bintoPATH, a plainnode --versionin every new shell hangs as well. From the user's side this looks like "many commands just do nothing".
What happens (traced with ps, lsof and MISE_DEBUG=1):
~/.local/share/vite-plus/bin/nodeis a symlink tovp. In system-first mode it skips its own bin dir and picks the nextnodeonPATH.vp env doctorconfirms it resolves to the mise shim:System Node.js /Users/stan/.local/share/mise/shims/node.- mise has no active Node for the directory, so its shim falls back to a
PATHlookup. mise excludes its own shims dir, but not the Vite+ bin dir, which is first onPATH. It execs~/.local/share/vite-plus/bin/node, which isvpagain. - The two shims exec each other forever. The hung process keeps the
vpimage name (lsofshowsvp), andMISE_DEBUG=1printsDEBUG config: ~/.config/mise/config.tomlin an endless loop.
The recursion guard from #2157 (Recursion detected but no 'node' found in PATH) does not trigger here, presumably because the re-entry goes through mise and looks like a fresh invocation.
Expected: vp should detect that the "system" node resolves back to itself (for example by comparing the resolved target to its own shim path or inode, or with a marker that survives one exec through a foreign shim) and fall through to the next real node on PATH, or fail with the existing recursion error instead of spinning.
Secondary note: vp env off only switches the shims to system-first mode. The shim symlinks stay in ~/.local/share/vite-plus/bin and the env file keeps that dir first on PATH, so the loop above still happens after vp env off.
Evidence:
B=~/.local/share/vite-plus/bin
# works: Vite+ bin dir is not on PATH, shim finds mise shim, mise finds homebrew node
$ $B/node --version
v26.8.2
# hangs (killed by timeout after 10s): Vite+ bin dir first on PATH, as set up by ~/.config/vite-plus/env
$ PATH="$B:$PATH" timeout 10 $B/node --version; echo "exit=$?"
exit=124
# works again when mise shims are removed from PATH
$ P2=$(echo "$PATH" | tr ':' '\n' | grep -v mise/shims | paste -sd: -)
$ PATH="$B:$P2" $B/node --version
v26.8.2
# mise side of the loop
$ PATH="$B:$PATH" MISE_DEBUG=1 timeout 3 $B/node --version 2>&1 | head
DEBUG config: ~/.config/mise/config.toml
DEBUG EnvResults { env_paths: ["/Users/stan/.local/share/mise/command-wrappers/bin"] }
DEBUG config: ~/.config/mise/config.toml
DEBUG EnvResults { env_paths: ["/Users/stan/.local/share/mise/command-wrappers/bin"] }
...
Workaround: remove the mise shims dir from PATH when running vp, or vp env on node, or activate a global Node in mise (mise use -g node@<version>) so the mise shim stops falling back to PATH.
Reproduction
N/A (environment setup issue, steps below are a full reproduction on macOS)
Steps to reproduce
# 1. install mise, add its shims dir to PATH, install a node but do NOT activate it (no `mise use`)
brew install mise
echo 'export PATH="$HOME/.local/share/mise/shims:$PATH"' >> ~/.zshrc
mise install node@26
# 2. install Vite+ with the default shell setup (env file prepends ~/.local/share/vite-plus/bin), keep system-first mode
curl -fsSL https://viteplus.dev/install.sh | sh
vp env off
# 3. new shell
node --version # hangs at 100% CPU
vp migrate --help # hangs, no output
vp help migrate # hangs, no output
System Info
$ vp env current # (only prints with the PATH workaround above, otherwise it hangs)
Node.js:
Version 26.8.2
Source system PATH
Bin Path /opt/homebrew/bin/node
Installed true
Mode system_first
Package Manager:
Name pnpm
Version 10.33.4
Source system PATH
Bin Paths
pnpm /Users/stan/.local/share/pnpm/bin/pnpm
pnpx /Users/stan/.local/share/pnpm/bin/pnpx
Installed true
Mode system_first
$ vp --version
vp v0.3.2
Local vite-plus:
vite-plus v0.3.2
Tools:
vite v8.3.0
rolldown v1.2.8
vitest v4.1.11
oxfmt v0.67.0
oxlint v1.82.0
oxlint-tsgolint v7.0.2001
tsdown v0.23.0
Environment:
Package manager pnpm v10.33.4
Node.js v24.21.0 (engines.node)
macOS 27.0 (arm64), zsh, mise 2026.9.9
$ vp env doctor (excerpt)
Configuration
✓ Node.js system-first mode
System Node.js /Users/stan/.local/share/mise/shims/node
✓ Package manager system-first mode
✓ IDE integration env sourced in ~/.zshenv
PATH
✓ node ~/.local/share/vite-plus/bin/node (vp shim)
Used Package Manager
pnpm
Logs
# hung child spawned by `vp migrate --help`, after 6s:
$ ps -o pid,%cpu,time,command -p <pid>
PID %CPU TIME COMMAND
20531 0.0 0:05.50 /Users/stan/.local/share/vite-plus/bin/node /Users/stan/.local/share/vite-plus/0.3.2/node_modules/vite-plus/dist/bin.js migrate --help
$ lsof -p 20531 | head -1
vp 20531 stan ... # image is vp, not node
# env of that child
VP_CLI_BIN=/Users/stan/.local/share/vite-plus/bin/vp
VP_PATH_INJECTED_TOOLS=node
PATH=/Users/stan/.local/share/vite-plus/bin:/Users/stan/.local/share/pnpm/bin:...:/Users/stan/.local/share/mise/shims:...
Validations
- Read the Contributing Guidelines.
- Check that there isn't already an issue for the same bug (closest is #2157, which is the bun variant where the guard does fire).
- Confirm this is a Vite+ issue and not an upstream issue (Vite, Vitest, tsdown, Rolldown, or Oxc).
- The provided reproduction is a minimal reproducible example.
- 主要语言
- Rust
- 星标
- 5.8k
- 派生
- 263
- 平均合并
- 22 小时 48 分钟
- 30 天内合并 PR
- 145
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
voidzero-dev/vite-plus 的其他 Issue
-
难度 2/5 1-3 小时 新手友好度 75/100
voidzero-dev/vite-plus#2804 · 1 个 reaction ·
-
pending triage
难度 2/5 1-3 小时 新手友好度 75/100
voidzero-dev/vite-plus#2801 · 1 个 reaction ·
-
enhancement
难度 2/5 1-3 小时 新手友好度 62/100
voidzero-dev/vite-plus#2097 · 10 条评论 · 2 个 reaction ·
-
pending triage
难度 3/5 1-2 天 新手友好度 55/100
voidzero-dev/vite-plus#2811 ·
-
难度 5/5 一周以上 新手友好度 35/100
voidzero-dev/vite-plus#2806 · 1 条评论 ·
查看 voidzero-dev/vite-plus 的全部 Issue
相似的 Issue
-
难度 2/5 1-3 小时 新手友好度 75/100
TheLarkInn/aipm#2413 ·
-
documentation
难度 1/5 1 小时以内 新手友好度 90/100
alexgorbatchev/simple-ptt#15 ·
-
tooling
难度 2/5 1-3 小时 新手友好度 75/100
-
todo:ticket
难度 2/5 1-3 小时 新手友好度 70/100
-
难度 2/5 1-3 小时 新手友好度 75/100
taikoxyz/taiko-mono#22168 · 1 条评论 ·