emailid-fetcher

Fetching email IDs from websites

Usage no npm install needed!

<script type="module">
  import emailidFetcher from 'https://cdn.skypack.dev/emailid-fetcher';
</script>

README

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' ]