# node-gitlog-parser **Repository Path**: mirrors_yorkie/node-gitlog-parser ## Basic Information - **Project Name**: node-gitlog-parser - **Description**: parse git log stream(Readable) - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README gitlog-parser [![Build Status](https://travis-ci.org/yorkie/node-gitlog-parser.svg)](https://travis-ci.org/yorkie/node-gitlog-parser) ====================== parse git log stream(Readable) ### Installation ```sh $ npm install gitlog-parser --save ``` ### Usage ```js var parselog = require('gitlog-parser').parse; var exec = require('child_process').exec; parselog(exec('git log').stdout).on('commit', function(commit) { // hash // author // message // ... }); parselog(exec('git log index.js').stdout).on('commit', function(commit) { // just show the history of index.js }); ``` **NB**: Hi, what's the difference from node-gitlog gitlog based on any text in `git log` command, so she is a text parser, not folder(.git) parser, so easy. ### License MIT