Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/princevora/git-username

Get git user email using node - js With git commands
https://github.com/princevora/git-username

Last synced: 5 days ago
JSON representation

Get git user email using node - js With git commands

Awesome Lists containing this project

README

        

# git-username
Get git user name using node - js With git commands

# Commands
```
npm i
```

or

```
npm install
```

# Usage
```js
import gitUsername from "./main.js";

try {
const username = await gitUsername();
} catch (error) {
console.error(error);
}
```