用Shell指令碼快速搭建Ubuntu下的Nodejs開發環境_linux shell

來源:互聯網
上載者:User

nodejs的確是很火,以前倒騰過,但是從來沒有認真記錄下什麼。在ubuntu下搭建它的開發環境嘗嘗鮮,有一個捷徑,它能讓系統自動幫你安裝所需要的東西,我們產生一段shell指令碼,讓它來完成以下工作:
安裝 git下最新的node,node包管理器,Forever和Cloud9IDE工具(可選),mongodb 10gen;
註:指令碼的正常運行需要比較新版本的Ubuntu,而且需要連網,因為它會串連網路去下載所有的依賴包順序安裝。

1.指令碼代碼:

複製代碼 代碼如下:

#!/bin/sh
echo 'System Update'
apt-get update
echo 'Update completed'
apt-get install libssl-dev git-core pkg-config build-essential curl

echo 'Clone Node.js'
cd /usr/src
git clone https://github.com/joyent/node
echo 'Node.js clone completed'

echo 'Install Node.js'
cd node
./configure && make && make install
echo 'Node.js install completed'

echo 'Install Node Package Manager'
curl http://npmjs.org/install.sh | sh
echo 'NPM install completed'

echo 'Install Forever'
npm install forever
echo 'Forever install completed'

echo 'Install Cloud9IDE'
git clone git://github.com/ajaxorg/cloud9.git
echo 'Cloud9IDE install completed'

echo 'Install MongoDB'
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
echo "deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen" >> /etc/apt/sources.list
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
sudo apt-get update
sudo apt-get install mongodb-10gen
echo 'MongoDB install completed.'

2.儲存指令碼到檔案:

複製代碼 代碼如下:
$ cd ~/
$ nano -w node.sh

把以上代碼粘貼到node.sh檔案裡,ctrl+o 儲存,ctrl+x 退出nano。如果你沒有安裝nano,請google一下安裝吧。
3.執行指令碼:
複製代碼 代碼如下:
$ chmod a+x node.sh && sudo ./node.sh

安裝好了之後,看看node版本: node -v,測試是否安裝成功。
4.建立測試:
複製代碼 代碼如下:
mkdir node_project
cd node_project
nano -w server.js

以下是著名的nodejs伺服器代碼:
複製代碼 代碼如下:
var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
}).listen(1337, "127.0.0.1");
console.log('Server running at http://127.0.0.1:1337/');

運行代碼:node server.js

在瀏覽器中開啟 :http://127.0.0.1:1337

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.