@ryanburnette/scrape-notams
v2.0.2
Published
Scrape NOTAMs from the FAA website.
Downloads
8
Readme
@ryanburnette/scrape-notams
A JavaScript API for scraping NOTAMs from the FAA website.
Installation
npm install @ryanburnette/scrape-notams
Usage
var scrapeNotams = require('scrape-notams');
// single airport
scrapeNotams('KATL')
.then(function (notams) {
console.log(notams);
});
// multiple airports
scrapeNotams(['KATL','KMEM'])
.then(function (notams) {
console.log(notams);
});