在mac osx下如何快速的搭建nodejs環境

來源:互聯網
上載者:User

這是用debian時搭建nodejs做的記錄, 當時是寫在~/.bashrc, Mac預設不會載入bashrc, 所以直接寫在bash_profile了.

Mac下如果想自動載入bashrc, 參考debian的在bash_profile加入下面的code:

 代碼如下 複製代碼

if [ -f ~/.bashrc ]; then
    source ~/.bashrc
fi


可以直接忽略上面的話, 在終端輸入下面的就OK了~

 代碼如下 複製代碼
git clone git://github.com/creationix/nvm.git ~/.nvm
echo ". ~/.nvm/nvm.sh" >> ~/.bash_profile # load NVM
        source ~/.bash_profile
nvm install v0.10 # 0.10.xx的最新版, nodejs.org/#download 查看最新版
nvm alias default 0.10 # 加到環境變數
echo 'export NODE_PATH="'$(npm root -g)'"' >> ~/.bash_profile # NODE_PATH
        source ~/.bash_profile
        echo $NODE_PATH
node -v
nvm ls
# npm nodejs新版已經整合, 無需單獨安裝.
npm install express -gd # express
        express -V
npm install uglify-js -gd #uglifyjs
        uglifyjs -V
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.