Skip to content

TheFamilyGit/mfs-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MFS Startup & Founder Scrapping

Requirements

Warning: you must have meteor installed on your machine.

curl https://install.meteor.com/ | sh

Launching The MFS Scrapping App

Go to the app directory, and launch meteor:

cd mfs/
meteor

Query to display the results:

meteor mongo
> db.founders.find({ linkedin: { $exists: true} }, {_id: 0, url: 0 }).forEach(function(f){print(tojson(f, '', true));});