你也许喜欢随手写下TODO项:
// TODO: 不要忘记fix掉这个bug
但是你是否会完成您的承诺,在未来的某一天回头fix掉这个潜在的bug呢?没关系,itodo帮你记下您的TODO列表,并提醒你。
npm install itodo -g
itodo --help // 一目了然所有相关命令
是的,最简单的用法就是itodo -i <某个项目>
。生成结果如下:
my_datavjs jacksontian $itodo -i .
项目路径:.
您项目的TODO列表项还有:4项
类型 |内容 |行 |文件名
---------------------------------------------------------------------
TODO |Stop taunting the data cache; remove global events and always attach to document |3092 |/Users/jacksontian/git/my_datavjs/deps/jquery-1.7.1.js
---------------------------------------------------------------------
TODO |Move to normal caching system |4425 |/Users/jacksontian/git/my_datavjs/deps/jquery-1.7.1.js
---------------------------------------------------------------------
TODO |用underscore的uniq替换该方法 |806 |/Users/jacksontian/git/my_datavjs/lib/charts/bubble.js
---------------------------------------------------------------------
TODO |改进为获取值时运算 |75 |/Users/jacksontian/git/my_datavjs/lib/charts/bundle.js
var itodo = require('itodo');
itodo.process(input, function (err, list) {
console.log("项目路径:" + input);
if (err) {
console.log("扫描项目出现错误:");
console.log(err);
return;
}
if (list.length) {
console.log("您项目的TODO列表项还有:" + list.length + "项");
console.log('类型\t|内容\t\t\t\t|行\t|文件名\t\t');
list.forEach(function (item) {
console.log('---------------------------------------------------------------------');
console.log([item.type, item.item, item.lineno, item.filename].join('\t|'));
});
} else {
console.log("恭喜您,项目的TODO列表为空");
}
});
MIT