UNPKG

pilotweather

Version:

Node.js app to get the airport status for any major U.S. airport, including known delays and weather data from NOAA.

6 lines (4 loc) 134 B
#!/usr/bin/env node var weather = require("./weather.js"); var airports = process.argv.slice(2); airports.forEach(weather.get);