Package Exports
- npm-email
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (npm-email) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
npm-email 
Get the email of an npm user
Install
$ npm install npm-email
Usage
const npmEmail = require('npm-email');
(async () => {
console.log(await npmEmail('sindresorhus'));
//=> 'sindresorhus@gmail.com'
})();
API
npmEmail(username)
Returns a promise for the user's email address.
username
Type: string
npm username to look up.
Related
- npm-email-cli - CLI for this module
- npm-keyword - Get a list of npm packages with a certain keyword
- package-json - Get the package.json of a package from the npm registry
- npm-user - Get user info of an npm user
License
MIT © Sindre Sorhus