1
0
Fork 0
mirror of https://github.com/IonicaBizau/git-stats.git synced 2025-01-11 22:11:53 +01:00
git-stats/example/index.js
2015-07-13 09:34:14 +03:00

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);
});