KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
email-crawler
★ 10
Open GitHub ↗
Crawls emails from web pages
Download README (.md)
Explore Similar Repositories
samsung_encrypted_POC
:
A proof of concept to pair and send commands to H and J series Samsung TVs
signalrex
:
Signalr implementation for Elixir
KalmanFilter
:
Implementation of EKF,UKF,EnKF,PF
dotfiles
:
A collection of my dotfiles
monolog-pdo-handler
:
PDO Handler for Monolog, based on Monolog example with some additions
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
email-crawler
?
Download (.md)
# email-crawler ## INSTALLATION ``` npm install email-crawler ``` ## USAGE ```javascript var Scraper = require("email-crawler"); var emailscraper = new Scraper("https://koptional.com"); // A level is how far removed (in terms of link clicks) a page is from the root page (only follows same domain routes) emailscraper.getLevels(2).then((emails) => { console.log(emails); // Here are the emails crawled from traveling two levels down this domain }) .catch((e) => { console.log("error"); }) ``` ## TESTS sorry, I am using mocha and jasmine at this point but am hoping to move all to jasmine ``` ./node_modules/mocha/bin/mocha tests/*.js --timeout=150000 ./node_modules/jasmine-node/bin/jasmine-node spec ``` or simply ``` npm test ``` ## LICENSE MIT