nvm/nvm.sh

129 lines
3.2 KiB
Bash
Raw Normal View History

2010-04-16 00:13:33 +08:00
# Node Version Manager
# Implemented as a bash function
# To use source this file from your bash profile
#
# Implemented by Tim Caswell <tim@creationix.com>
# with much bash help from Matthew Ranney
nvm()
{
2010-04-16 00:20:27 +08:00
START=`pwd`
if [ $# -lt 1 ]; then
nvm help
return
fi
case $1 in
"help" )
echo
echo "Node Version Manager"
2010-04-16 00:53:39 +08:00
echo
2010-04-16 00:20:27 +08:00
echo "Usage:"
2010-04-16 01:22:16 +08:00
echo " nvm help (Show this message)"
2010-04-16 00:53:39 +08:00
echo " nvm install version (Download and install a released version)"
echo " nvm clone (Clone and install HEAD version)"
echo " nvm update (Pull and rebuild HEAD version)"
2010-04-16 01:22:16 +08:00
echo " nvm list (Show all installed versions)"
echo " nvm use version (Set this version in the PATH)"
echo " nvm deactivate (Remove nvm entry from PATH)"
2010-04-16 00:53:39 +08:00
echo
echo "Example:"
echo " nvm install v0.1.91"
2010-04-16 00:20:27 +08:00
echo
;;
2010-04-16 00:53:39 +08:00
"clone" )
if [ $# -ne 1 ]; then
nvm help
return;
fi
mkdir -p "$NVM_DIR/src" && \
cd "$NVM_DIR/src" && \
git clone git://github.com/ry/node.git && \
cd node && \
./configure --debug --prefix="$NVM_DIR/HEAD" && \
2010-04-16 00:53:39 +08:00
make && \
make install && \
nvm use HEAD
cd $START
;;
"update" )
if [ $# -ne 1 ]; then
nvm help
return;
fi
cd "$NVM_DIR/src/node" && \
git pull origin master && \
./configure --debug --prefix="$NVM_DIR/HEAD" && \
2010-04-16 00:53:39 +08:00
make clean all && \
make install && \
nvm use HEAD
cd $START
;;
2010-04-16 00:20:27 +08:00
"install" )
2010-04-16 00:53:39 +08:00
if [ $# -ne 2 ]; then
2010-04-16 00:20:27 +08:00
nvm help
return;
fi
mkdir -p "$NVM_DIR/src" && \
cd "$NVM_DIR/src" && \
wget "http://nodejs.org/dist/node-$2.tar.gz" -N && \
tar -xzf "node-$2.tar.gz" && \
cd "node-$2" && \
./configure --prefix="$NVM_DIR/$2" && \
make && \
make install && \
nvm use $2
cd $START
;;
"deactivate" )
if [[ $PATH == *$NVM_DIR/*/bin* ]]; then
export PATH=${PATH%$NVM_DIR/*/bin*}${PATH#*$NVM_DIR/*/bin:}
unset NODE_PATH
echo "$NVM_DIR/*/bin removed from \$PATH"
else
echo "Could not find $NVM_DIR/*/bin in \$PATH"
fi
;;
2010-04-16 00:20:27 +08:00
"use" )
2010-04-16 00:53:39 +08:00
if [ $# -ne 2 ]; then
2010-04-16 00:20:27 +08:00
nvm help
return;
fi
if [ ! -d $NVM_DIR/$2 ]; then
echo "$2 version is not installed yet"
return;
fi
if [[ $PATH == *$NVM_DIR/*/bin* ]]; then
PATH=${PATH%$NVM_DIR/*/bin*}$NVM_DIR/$2/bin${PATH#*$NVM_DIR/*/bin}
else
PATH="$NVM_DIR/$2/bin:$PATH"
fi
export PATH
mkdir -p "$NVM_DIR/libs/$2"
export NODE_PATH="$NVM_DIR/libs/$2"
2010-04-16 00:20:27 +08:00
echo "Now using node $2"
;;
"list" )
2010-04-16 00:53:39 +08:00
if [ $# -ne 1 ]; then
nvm help
return;
fi
if [ -d $NVM_DIR/HEAD ]; then
if [[ $PATH == *$NVM_DIR/HEAD/bin* ]]; then
echo "HEAD *"
else
echo "HEAD"
fi
fi
for f in $NVM_DIR/v*; do
if [[ $PATH == *$f/bin* ]]; then
echo "v${f##*v} *"
else
echo "v${f##*v}"
fi
done
2010-04-16 00:20:27 +08:00
;;
* )
nvm help
;;
esac
2010-04-16 00:13:33 +08:00
}