Skip to content

aube config get

  • Usage: aube config get [--json] [--location <LOCATION>] <KEY>

Print the effective value of a key

Arguments

<KEY>

The setting key. Accepts either a pnpm canonical name (e.g. autoInstallPeers) or an .npmrc alias (e.g. auto-install-peers)

Flags

--json

Emit the value as JSON. Matches pnpm config get --json: a missing key renders as undefined, a found value is JSON-encoded

--location <LOCATION>

Which .npmrc file(s) to read. Defaults to merged — the last-write-wins view of ~/.npmrc then ./.npmrc, matching what install actually sees. Use user or project to restrict the lookup to a single file

Choices:

  • merged
  • user
  • project
  • global

Default: merged

Released under the MIT License.