Skip to content
This repository has been archived by the owner on Jan 31, 2021. It is now read-only.

Commit

Permalink
added more locations
Browse files Browse the repository at this point in the history
  • Loading branch information
99littlebugs committed Jan 13, 2021
1 parent 65e170f commit e65667b
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion scraper.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,41 @@ const nyGovSites = [{
state: "NY",
zip: "10018"
}
},
{
name: "Northwell CoVID-19 Vaccination Program: Manhattan - Lenox Hill Hospital",
link: "https://apps.health.ny.gov/doh2/applinks/cdmspr/2/counties?OpID=50501473",
address: {
name: "LHH Einhorn Auditorium",
street: "131 East 76th Street",
city: "New York",
state: "NY",
zip: "10021"
}
},
{
name: "NC Dept. of Health at Nassau Community College CCB",
link: "https://apps.health.ny.gov/doh2/applinks/cdmspr/2/counties?OpID=50500881",
address: {
name: "Nassau Community College",
street: "1 Education Drive",
city: "Garden City",
state: "NY",
zip: "11530"
}
},
{
name: "NCDOH at Yes We Can Community Center",
link: "https://apps.health.ny.gov/doh2/applinks/cdmspr/2/counties?OpID=50501806",
address: {
name: "Yes We Can Community Center",
street: "141 Garden Street",
city: "Westbury",
state: "NY",
zip: "11590"
}
}];

const events = [];
let promises = [];

for (const site of nyGovSites) {
Expand Down

0 comments on commit e65667b

Please sign in to comment.