bugspots
bugspots is a port of the ruby gem bugspots, which in turn is based on a Google blog post. The gist of it is that files in which commit messages containing fix/close usually signify that the file is prone to having bugs.
install
npm install bugspots
documentation
Bugspots
#scan(opts, callback)
opts is an object containing the following:
{
repo: <repo>,
branch: <branch>,
depth: <depth>,
regex: <regex>
}
callback pass in a function with the signature (err, hotspots), where hotspots returns an array
of hotspot objects containing the filename and the score of the file in sorted order.
license
MIT
author
Shuan Wang (shuanwang@gmail.com)