Get the email of a npm user
$ npm install --save npm-email
var npmEmail = require('npm-email');
npmEmail('sindresorhus', function (err, email) {
console.log(email);
//=> 'sindresorhus@gmail.com'
});
$ npm install --global npm-email
$ npm-email --help
Usage
$ npm-email <username>
Example
$ npm-email sindresorhus
sindresorhus@gmail.com
- 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 a npm user
MIT © Sindre Sorhus