A toolset for code analysis and report visualisation
npm install code-forensicscode-forensics
--------------
code-forensics is a toolset for analysing codebases stored in a version control system. It leverages the repository logs, or version history data, to perform deep analyses with regards to complexity, logical coupling, authors coupling and to inspect the evolution in time of different parts of a software system with respect to metrics like code churn and number of revisions.
See the CHANGELOG for release details.
$ npm install code-forensics
Note 1: code-forensics is distributed as a nodejs module that runs on top of gulp version 4. Be aware that if you have gulp already installed as a global module and it's not the required version you will have to explicitly execute the gulp command that comes with the installation of code-forensics.
Note 2: I would advise against installing code-forensics as a global module, as it requires certain packages to be at the top level of the node_modules folder in order to correctly run its internal http server and serve the pages to the browser for the visualisation part of the analysis. If code-forensics is installed as a global module such packages may conflict with already existing ones and that could cause all sorts of unpredictable issues.
PLEASE REFER TO THE WIKI PAGES FOR A MORE COMPREHENSIVE DOCUMENTATION.
Before posting a new issue please make sure you check out the Troubleshooting guide and the Frequently Asked Questions wiki pages.
gulpfile.js to bootstrap gulp, however there is no need to know the task declaration syntax, as all the necessary tasks are defined inside code-forensics.gulpfile.js must define the configuration options and parameters necessary to run code-forensics tasks.A minimal configuration gulpfile.js would look like the following:
``javascript`
require('code-forensics').configure(
{
repository: {
rootPath: "
}
}
);
The only required configuration value is the file system path to the root directory of the version control repository to analyse, however this example is not practical and I would recommend you learn about and configure other parameters to more effectively target the analyses you intend to run.
Each analysis may require or accept optional parameters.
``
$ gulp
See below how to learn about any available task parameter.
Note: it is highly recommended to specify a time interval for any analysis. If not, code-forensics will attempt to analyse the git commits for the current date only, most likely resulting in empty or near empty reports. You can specify a time interval via command line parameters or through the configuration file. Please refer to the provided documentation.
#### List analysis tasks
By default running gulp without any argument will print the list of all the top level analysis tasks. Alternatively you can explicitly run the task list-analysis-tasks:``
$ gulp list-analysis-tasks
Currently the following analyses are implemented:
* javascript-complexity-trend-analysis (when JavaScript is enabled)
* ruby-complexity-trend-analysis (when Ruby is enabled)
* sloc-trend-analysis
* hotspot-analysis
* sum-of-coupling-analysis
* temporal-coupling-analysis
* system-evolution-analysis
* developer-effort-analysis
* developer-coupling-analysis
* knowledge-map-analysis
* commit-message-analysis
#### List all available tasks
There are different options to print all the available tasks.
The help task itself will list all the tasks along with their description, e.g.:``
$ gulp help
If you're interested in inspecting the dependencies between tasks you can leverage gulp version 4 way of displaying exeactly that in a nice tree-like format: run gulp -T or gulp --tasks.
#### Task usage information
In order to learn which parameters can be passed to a task you can type the following command:
``
$ gulp help --taskName=
##### Temporal period of analysis
For most tasks it's possible to specify a time period for which the analysis is performed by passing the parameters _dateFrom_ and _dateTo_. This is particularly useful to understand the evolution of the code in time and analyse negative or positive trends of particular metrics (see the wiki pages for more detailed documentation).
Start up the local http server:
`bash`
$ gulp webserver
Open the browser at http://localhost:3000/index.html to see a list of the available reports.
bash
$ gulp commit-message-analysis --dateFrom=2016-01-01 --dateTo=2016-06-30
`The output of the command would be something similar to this:
`console
[00:13:07] Starting 'vcs-commit-messages'...
[00:13:07] Fetching git messages from 2010-01-01 to 2010-06-30
[00:13:07] Created: vcs_commit_messages_2010-01-01_2010-06-30.log
[00:13:07] Finished 'vcs-commit-messages' after 214 ms
[00:13:07] Starting 'commit-message-analysis'...
[00:13:07] Generating report file 2010-01-01_2010-06-30_commit-words-data.json
[00:13:07] Open the following link to see the results:
[00:13:07] http://localhost:3000/index.html?reportId=cbd5e3db4ecc7acfb000014f22107ac37e98d785
[00:13:07] Finished 'commit-message-analysis' after 62 ms
``The results can then be displayed in a word cloud diagram at the url given above.
| Hotspot | ![]() | Complexity trend | ![]() |
| System evolution | ![]() | Commit messages | ![]() |
| Developer coupling | ![]() | Developer network | ![]() |
| Developer effort | ![]() | Knowledge map | ![]() |
Of course, if you think there could be any new analysis or feature that could be useful in this tool, you're welcome to open a new issue and even to help directly with the code!
code-forensics is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License v3.0 or any later version.