Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/princevora/git-username
- Owner: princevora
- License: mit
- Created: 2024-06-09T05:23:19.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-09T08:21:56.000Z (5 months ago)
- Last Synced: 2024-06-10T07:55:21.017Z (5 months ago)
- Language: JavaScript
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
}
```