mirror of
https://github.com/IonicaBizau/git-stats.git
synced 2024-11-10 21:27:02 +01:00
13 lines
234 B
JavaScript
13 lines
234 B
JavaScript
|
// Dependencies
|
||
|
var GitStats = require("../lib");
|
||
|
|
||
|
// Create the GitStats instance
|
||
|
var g1 = new GitStats();
|
||
|
|
||
|
// Display the ansi calendar
|
||
|
g1.ansiCalendar({
|
||
|
theme: "DARK"
|
||
|
}, function (err, data) {
|
||
|
console.log(err || data);
|
||
|
});
|