Skip to main content
Version: 9.x

pnpm config

别名:c

¥Aliases: c

管理配置文件。

¥Manage the configuration files.

配置文件的格式为 INI

¥The configuration files are in INI format.

本地配置文件位于项目根目录下,名为 .npmrc.conf。

¥The local configuration file is located in the root of the project and is named .npmrc.

全局配置文件位于以下位置之一:

¥The global configuration file is located at one of the following locations:

  • 如果设置了 $XDG_CONFIG_HOME 环境变量,则 $XDG_CONFIG_HOME/pnpm/rc

    ¥If the $XDG_CONFIG_HOME env variable is set, then $XDG_CONFIG_HOME/pnpm/rc

  • 在 Windows 上:~/AppData/Local/pnpm/config/rc

    ¥On Windows: ~/AppData/Local/pnpm/config/rc

  • 在 macOS 上:~/Library/Preferences/pnpm/rc

    ¥On macOS: ~/Library/Preferences/pnpm/rc

  • 在 Linux 上:~/.config/pnpm/rc

    ¥On Linux: ~/.config/pnpm/rc

命令

¥Commands

set <key> <value>

将配置键设置为提供的值。

¥Set the config key to the value provided.

get <key>

打印提供的密钥的配置值。

¥Print the config value for the provided key.

delete <key>

从配置文件中删除配置密钥。

¥Remove the config key from the config file.

list

显示所有配置设置。

¥Show all the config settings.

选项

¥Options

--global, -g

在全局配置文件中设置配置。

¥Set the configuration in the global config file.

--location

当设置为 project 时,将使用最接近 package.json 处的 .npmrc 文件。

¥When set to project, the .npmrc file at the nearest package.json will be used.

当设置为 global 时,性能与设置 --global 选项相同。

¥When set to global, the performance is the same as setting the --global option.

--json

以 JSON 格式显示所有配置设置。

¥Show all the config settings in JSON format.