mirror of
https://github.com/IonicaBizau/git-stats.git
synced 2024-11-16 08:58:32 +01:00
12 lines
234 B
JavaScript
12 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);
|
|
});
|