如果需要執行 nodejs 腳本,可以依照以下方式安裝並測試
安裝指令
yum install -y gcc-c++ make curl -sL https://rpm.nodesource.com/setup_6.x | sudo -E bash - yum install nodejs -y
確認版本
# node -v v6.9.1 # npm -v 3.10.8
建立一個簡單的 web server
先建立一個 js 檔案,例如 demo_server.js ,內容如下var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Welcome Node.js'); }).listen(3001, "127.0.0.1"); console.log('Server running at http://127.0.0.1:3001/');
測試執行
node --debug demo_server.js