Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 857 Bytes

readme.md

File metadata and controls

37 lines (23 loc) · 857 Bytes

npm-email

Get the email of an npm user

Install

npm install npm-email

Usage

import npmEmail from 'npm-email';

console.log(await npmEmail('sindresorhus'));
//=> '[email protected]'

API

npmEmail(username)

Returns a promise for the user's email address, or undefined if the user does not exist or the email could not be found.

username

Type: string

The npm username to look up.

Related