| Server IP : 172.67.131.151 / Your IP : 172.71.81.82 Web Server : Apache System : Linux keen-cori.18-142-40-148.plesk.page 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 06:59:36 UTC 2025 x86_64 User : simottodesign.com_2tntp341vs7 ( 10011) PHP Version : 8.3.31 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/libexec/nodenv/ |
Upload File : |
#!/usr/bin/env bash
# Summary: Show the current Node version and its origin
#
# Shows the currently selected Node version and how it was
# selected. To obtain only the version string, use `nodenv
# version-name'.
set -e
[ -n "$NODENV_DEBUG" ] && set -x
VERSION_NAME="$(nodenv-version-name)"
VERSION_PATH="$(nodenv-prefix "$VERSION_NAME" 2>/dev/null || true)"
while [ -L "$VERSION_PATH" ]; do
READLINK=$(type -p greadlink readlink | head -1)
[ -n "$READLINK" ] || break
VERSION_PATH=$($READLINK "$VERSION_PATH")
ALIAS=$(basename "$VERSION_PATH")
done
echo "$VERSION_NAME ${ALIAS+=> $ALIAS }(set by $(nodenv-version-origin))"