Techweekly
github.com/xiongwilee/…
快速入門
第一步,下載程式碼,安裝依賴:
$ git clone https://github.com/xiongwilee/Techweekly.git
$ cd Techweekly && npm install --registry=https://registry.npm.taobao.org複製程式碼
第二步,修改郵件配置config/config.mail.js
:
module.exports = {
"sender": {
"host": "郵箱伺服器host",
"port": "郵箱伺服器埠號",
"auth": {
"user": "郵箱地址",
"pass": "郵箱密碼"
}
},
"subject": "郵件主題",
"from": "你的名字 <郵箱地址>",
"to": ["收件人郵箱地址"]
}複製程式碼
或者,你也可以直接使用預設的郵箱配置config.mail.sample.js
,修改config.mail.sample.js
為config.mail.js
第三步,傳送週報郵件:
$ node index.js複製程式碼
FYI:
如果你需要定時傳送郵件,推薦使用crontab
:
* 10 * * 5 cd /your/project/path/ && node index.js複製程式碼
貢獻
Techweekly預設支援fex和75team兩個預設週報源,你可以根據自己的需求配置週報來源:
"源ID(可以配置任意字元)": {
/**
* 頁面連線,可以是一個string, 也可以是function,如果是function則:
* @return {String} 頁面URL
*/
url: function() {},
/**
* 通過url獲取文章內容URL的方法
* @param {string} html 通過頁面連線爬取到的頁面html
* @return {String} 從html中解析到的文章內容的連結
*/
getLink: function(html) {},
/**
* 通過文章內容的連結爬取到文章主體
* @param {String} html 通過文章內容的連結爬取到文章的html
* @return {String} 文章主體部分的html
*/
getContent: function(html) {}
}複製程式碼
FYI:
在getLink
和getContent
方法裡,你可以直接使用cheerio來解析DOM。