├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── package.json ├── src ├── blacklists.ts ├── dataModel.ts ├── emailExtractor.ts ├── emailFieldExtractors.ts ├── googleNavigation.ts ├── handlerLabels.ts ├── inputLoaders.ts ├── main.ts ├── requestsGenerator.ts ├── routes.ts └── utils.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/package.json -------------------------------------------------------------------------------- /src/blacklists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/src/blacklists.ts -------------------------------------------------------------------------------- /src/dataModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/src/dataModel.ts -------------------------------------------------------------------------------- /src/emailExtractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/src/emailExtractor.ts -------------------------------------------------------------------------------- /src/emailFieldExtractors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/src/emailFieldExtractors.ts -------------------------------------------------------------------------------- /src/googleNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/src/googleNavigation.ts -------------------------------------------------------------------------------- /src/handlerLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/src/handlerLabels.ts -------------------------------------------------------------------------------- /src/inputLoaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/src/inputLoaders.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/requestsGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/src/requestsGenerator.ts -------------------------------------------------------------------------------- /src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/src/routes.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eneiromatos/TS-email-scraper/HEAD/tsconfig.json --------------------------------------------------------------------------------