Parse a
git log
output of a repository into an object with useful commit data. Supports plugins, streaming, promises and callback APIs.
You might also be interested in always-done.
(TOC generated by verb using markdown-toc)
Install with npm
$ npm install parse-git-log --save
or install using yarn
$ yarn add parse-git-log
For more use-cases see the tests
const parseGitLog = require('parse-git-log')
Parses an advanced
git log
output using streams. Allows customplugin
function to be passed to update/modify the commit object (which is vfile). It also emitsdata
andcommit
events, so you may not need suchplugin
function. But in case you want to do some more parsing and interesting stuff, thisplugin
function allows you to do cool things. Thatplugin
function is called with "transform stream" context and this is also passed as first argument. When you return a function from that plugin, it is called with vfile object (commit object) as first argument.
Params
[cwd]
{String}: path to where is the.git
folder; defaults toprocess.cwd()
[plugin]
{Function}: smart plugin function, passed withstream, file
signature, if returns another function, that function is passed withfile
object which represent each commit object.returns
{Stream}: transform stream, using through2 behind
Events
emits
:commit
passed with vfile object for each commitemits
:data
same ascommit
event; passed with vfile object for each commit
Example
const parseGitLog = require('parse-git-log')
// optionally pass `cwd` as first argument
parseGitLog()
.once('error', (err) => console.error('err:', err))
.on('commit', (commit) => console.log('commit:', commit))
.once('finish', () => console.log('done'))
Thin Promise wrapper over the streaming API.
Params
[cwd]
{String}: path to where is the.git
folder; defaults toprocess.cwd()
[plugin]
{Function}: smart plugin function, passed withstream, file
signature, if returns another function, that function is passed withfile
object which represent each commit object.returns
{Promise}: resolves array of vfile commit objects, otherwise rejected promise
Example
const parseGitLog = require('parse-git-log')
parseGitLog.promise('../foo-bar')
.then((commits) => {
console.log('list of commit objects:')
commits.forEach((commit) => console.log('commit:', commit))
})
.catch(console.error)
- always-done: Handle completion and errors with elegance! Support for streams, callbacks, promises, child processes, async/await and sync functions. A drop-in replacement… more | homepage
- each-promise: Iterate over promises, promise-returning or async/await functions in series or parallel. Support settle (fail-fast), concurrency (limiting) and hooks system (start… more | homepage
- minibase: Minimalist alternative for Base. Build complex APIs with small units called plugins. Works well with most of the already existing… more | homepage
- parse-function: Parse a function to an object that has its name, body, args and few more useful properties. Support regular functions… more | homepage
- parse-github-url: Parse a github URL into an object. | homepage
- parse-semver: Parse, normalize and validate given semver shorthand (e.g. [email protected]) to object. | homepage
- try-catch-core: Low-level package to handle completion and errors of sync or asynchronous functions, using once and dezalgo libs. Useful for and… more | homepage
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Please read the contributing guidelines for advice on opening issues, pull requests, and coding standards.
If you need some help and can spent some cash, feel free to contact me at CodeMentor.io too.
In short: If you want to contribute to that project, please follow these things
- Please DO NOT edit README.md, CHANGELOG.md and .verb.md files. See "Building docs" section.
- Ensure anything is okey by installing the dependencies and run the tests. See "Running tests" section.
- Always use
npm run commit
to commit changes instead ofgit commit
, because it is interactive and user-friendly. It uses commitizen behind the scenes, which follows Conventional Changelog idealogy. - Do NOT bump the version in package.json. For that we use
npm run release
, which is standard-version and follows Conventional Changelog idealogy.
Thanks a lot! :)
Documentation and that readme is generated using verb-generate-readme, which is a verb generator, so you need to install both of them and then run verb
command like that
$ npm install verbose/verb#dev verb-generate-readme --global && verb
Please don't edit the README directly. Any changes to the readme must be made in .verb.md.
Clone repository and run the following in that cloned directory
$ npm install && npm test
Charlike Mike Reagent
Copyright © 2016, Charlike Mike Reagent. Released under the MIT license.
This file was generated by verb-generate-readme, v0.2.0, on December 24, 2016.
Project scaffolded using charlike cli.