0.2.4 • Published 3 years ago

git-blame-line v0.2.4

Weekly downloads
2
License
MPL-2.0
Repository
github
Last release
3 years ago

npm version NPM downloads

Git-blame-line

Executes git blame asynchronously for a given <filepath>:<linenumber> string, and returns the information in JSON format.

Usage

You don't need to remember git syntax to get blame info for single line now. Instead of writing this:

git blame -L 19,+1 --line-porcelain src/index.ts

You can execute this from command line:

blame-line src/index.ts:19

And the output would be in the shape as:

{
  "author": "Berkan Unal",
  "authorMail": "Berkanunal@gmail.com",
  "authorTime": "2020-11-15T17:35:01.000Z",
  "authorTz": "+0300",
  "committer": "Berkan Unal",
  "committerMail": "Berkanunal@gmail.com",
  "committerTime": "2020-11-15T17:35:01.000Z",
  "committerTz": "+0300",
  "summary": "Remove babel webpack, add eslint, lint project",
  "previous": "816634e51cf31c2d7bd18b7a8b082aff539e1bcd src/index.ts",
  "filename": "src/index.ts",
  "sourceCode": "export async function blameLine(filepathWithLine: string): Promise<BlameInfo> {"
}

Installing for using inside a node project

yarn add git-blame-line

or

npm install git-blame-line

Then import in the project and use it easily like this 1:

const { blameLine } = require("git-blame-line");

async function example() {
  const info = await blameLine("path/to/file:123");
  console.log(info);
}

example();

1 You don't have to use requirejs syntax

License

MPL-2.0

0.2.4

3 years ago

0.2.3

3 years ago

0.2.2

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago