/npm-user

Get user info of an npm user

Primary LanguageJavaScriptMIT LicenseMIT

npm-user Build Status

Get user info of an npm user

Since npm has no API for this we're forced to scrape the profile page.

Use the faster npm-email if you only need the email.

Install

$ npm install npm-user

Usage

const npmUser = require('npm-user');

npmUser('sindresorhus').then(user => {
	console.log(user);
	/*
	{
		name: 'Sindre Sorhus',
		avatar: 'https://gravatar.com/avatar/d36a92237c75c5337c17b60d90686bf9?size=496',
		email: 'sindresorhus@gmail.com',
		homepage: 'https://sindresorhus.com',
		github: 'sindresorhus',
		twitter: 'sindresorhus',
		freenode: null
	}
	*/
});

Values will be null if they're not set in the npm profile.

Related

License

MIT © Sindre Sorhus