Skip to main content

Node

Whatโ€‹

Display the currently active Node.js version.

Sample Configurationโ€‹

{
"type": "node",
"style": "powerline",
"powerline_symbol": "๎‚ฐ",
"foreground": "#ffffff",
"background": "#6CA35E",
"template": " ๎œ˜ {{ .Full }} "
}

Propertiesโ€‹

NameTypeDefaultDescription
home_enabledbooleanfalsedisplay the segment in the HOME folder or not
fetch_versionbooleantruefetch the Node.js version
missing_command_textstringtext to display when the command is missing
display_modestringcontext
  • always: the segment is always displayed
  • files: the segment is only displayed when file extensions listed are present
  • context: displays the segment when the environment or files is active
version_url_templatestringa go text/template template that creates the URL of the version info / release notes
fetch_package_managerbooleanfalsedefine if the current project uses Yarn or NPM
yarn_iconstring\uF011Bthe icon/text to display when using Yarn
npm_iconstring\uE71Ethe icon/text to display when using NPM
extensions[]string*.js, *.ts, package.json, .nvmrc, pnpm-workspace.yaml, .pnpmfile.cjs, .vueallows to override the default list of file extensions to validate
folders[]stringallows to override the list of folder names to validate
cache_versionbooleanfalsecache the executable's version or not

Template (info)โ€‹

default template
{{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }}

Propertiesโ€‹

NameTypeDescription
.Fullstringthe full version
.Majorstringmajor number
.Minorstringminor number
.Patchstringpatch number
.URLstringURL of the version info / release notes
.Errorstringerror encountered when fetching the version string
.PackageManagerIconstringthe Yarn or NPM icon when setting fetch_package_manager to true
.Mismatchbooleantrue if the version in .nvmrc is not equal to .Full
.Expectedstringthe expected version set in .nvmrc