快速入门
第一步,下载代码,安装依赖:
$ 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。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。