This project extracts Fortune - 1000 companies data from a hidden url of the Fortune website.
import { Crawler } from "companies-list";
async function start() {
const crawler = new Crawler(2019, "./srinivas.csv");
await crawler.generateCSVFile();
}
start();
- Implement for any year. Does API support this? And year should be configureable too.
- Option to implement proxy server(s)
- csv fields generated should be configurable?
- Implement persistance to crawl where it left off?
- Dockerize this application
MIT