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 keywordpackage-json
- Get the package.json of a package from the npm registry
MIT © Sindre Sorhus