開始你的第一個node專案
阿新 • • 發佈:2018-11-14
網上有很多關於Node.js如何安裝的教程,我這裡只是記錄一下,免得自己每次再找
一、安裝nvm
在終端執行命令 curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
修改配置檔案 ~/.bashrc ,在裡面加入以下文字
export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
讓配置檔案生效 source ~/.bashrc
二、安裝node.js
nvm ls-remote
nvm install v8.9.1
nvm ls
nvm use xx.xx
三、新建專案
mkdir firstProject
cd firstProject
npm init
四、寫專案程式碼
例如我之前在 Node.js之使用superagent + cheerio 來爬取網頁內容 這篇筆記裡面寫了一段示例程式碼:
var superagent = require('superagent'); var cheerio = require('cheerio'); var url = "http://xxx.xxx.com"; var cookie = "locale=zh; sessionid=imq23m240knb3421b35j0x8q82nb8z7qb"; var items = []; superagent.get(url) .set("Cookie", cookie) .end(function(error, res) { if (error) { throw error; } var $ = cheerio.load(res.text); $('.admin-table tbody tr').each(function (idx, value){ $value = $(value); $value.find('td').each(function (iddx, book) { if (0 === iddx) { $book = $(book); $items.push($book.find('a').text()); } }); }); console.log($items); });
將上面這段專案程式碼放到 index.js 裡面。(其實專案的入口檔案可以不叫 index.js ,可以叫其他任何名字如 app.js 之類的。只不過為了方面,我習慣用 index.js )
五、安裝專案所用到的模組
上面的程式碼中,我用到了 superagent 和 cheerio ,那麼在正式執行專案之前,我要先安裝這兩個模組。
使用命令 npm i superagent cheerio --save 安裝需要的模組
六、啟動專案
node index.js 就啟動了專案