From charlesreid1

Line 8: Line 8:


=Installing: Third Try=
=Installing: Third Try=
Use nvm
<pre>
git clone https://github.com/creationix/nvm.git ~/.nvm
echo "source ~/.nvm/nvm.sh" >> .bashrc
nvm ls-remote
nvm install -s v0.10.30
nvm alias default 0.10.30
</pre>
test:
<pre>
node -v && npm -v
</pre>

Revision as of 03:09, 30 March 2015

Installing: First Try

See Angular/FirstTry page.

Installing: Trying Again

This documentation is worthless. Install attempt number two: Angular/SecondTry

Installing: Third Try

Use nvm

git clone https://github.com/creationix/nvm.git ~/.nvm
echo "source ~/.nvm/nvm.sh" >> .bashrc
nvm ls-remote
nvm install -s v0.10.30
nvm alias default 0.10.30

test:

node -v && npm -v