1.0.2 • Published 5 years ago

emailid-fetcher v1.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

emailid-fetcher

Emailid fethcer is used for fetching the email IDs from given website link.

Installation

Run below command to install emailid-fetcher.

npm install emailid-fetcher

Usage

 var emailFethcer = require('emailid-fetcher')
 var fetcher = new emailFetcher('http://www.allwinsoft.com/')

 //Fetching and return email IDs by callback funtion
 fetcher.getEmails(function(emails){
    console.log(emails)
 })

Output

[ 'allwinsoft@mail.com' ]