This script converts JSON exports from Trello to Markdown.
团队中工作内容记录在trello每个任务卡片的活动里,而周报用的腾讯文档,需要把trello的每条记录copy到文档里,比较费时,也容易遗漏出错。所以写了这个小工具,避免重复的工作。把节省下来的时间,用在总结和反思。
备注:由于用了正则表达式的后行断言,node.js版本至少要8.10.0。
1.安装依赖
npm install
2.点击 https://trello.com/app-key ,获取 key
和 token
。
3.在 config.js 配置 key
、token
、看板名称
、成员username
//Replace 'your_key' with your key
module.exports.key = '';
//Replace 'your_token' with your application's token
module.exports.token = '';
//Put all of the desired boards' name into this array
module.exports.boards = ['boardName1', 'boardName2'];
module.exports.teamUsername = ['username1','username2']
4.npm run example
- 将单个成员的本周评论数据转为markdown
- 本周任务标题加总用时
- 本周任务标题加计数
- 根据username获取memberId
- 根据看板名称获取看板ID
- 汇总小组周评论
MIT