1.0.0 • Published 7 years ago

user-meta v1.0.0

Weekly downloads
14,137
License
MIT
Repository
github
Last release
7 years ago

user-meta

Read user name, email and URL from .npmrc or .gitconfig.

Installation

npm install user-meta

Usage

const { name, email, url } = require('user-meta');

How it works

It tries to read data from your npm and Git configs:

PropertynpmGit
namenpm get init-author-namegit config user.name
emailnpm get init-author-emailgit config user.email
urlnpm get init-author-url

Npm has priority over Git. git binary is required and used to read Git configuration. Don’t use this module if performance is important.

Changelog

The changelog can be found on the Releases page.

Contributing

Everyone is welcome to contribute. Please take a moment to review the contributing guidelines.

Authors and license

Artem Sapegin and contributors.

MIT License, see the included License.md file.