# npm explore

在指定的已安装软件包的目录中生成子 shell

# 概要

npm explore <pkg> [ -- <command>]

注意

这个命令不支持工作空间。

# 描述

在指定的安装包目录中生成一个子 shell。

如果指定了命令,则它在子 shell 中运行,然后立即终止。

这对于 node_modules 文件夹中的 git 子模块特别方便:

npm explore some-dependency -- git pull origin master

请注意,该软件包不会 npm rebuild <pkg> 在之后自动重建,因此如果您进行任何更改,请务必使用。

# 配置

# shell

  • Default: SHELL 环境变量,或 Posix 上的 “bash”,或 Windows 上的 “cmd.exe”
  • Type: String

npm explore 命令运行的 shell。

Last Updated: 4/25/2023, 9:49:29 AM