├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── images └── hero__disaster-flood.jpg ├── lib ├── api-util.js ├── daily-forecast.js ├── severe-weather-power-disruption-index.js ├── tropical-forecast-projected-path.js ├── weather-alert-details.js └── weather-alert-headlines.js ├── manifest.yml └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Call-for-Code/weather-api-nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Call-for-Code/weather-api-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Call-for-Code/weather-api-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Call-for-Code/weather-api-nodejs/HEAD/app.js -------------------------------------------------------------------------------- /images/hero__disaster-flood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Call-for-Code/weather-api-nodejs/HEAD/images/hero__disaster-flood.jpg -------------------------------------------------------------------------------- /lib/api-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Call-for-Code/weather-api-nodejs/HEAD/lib/api-util.js -------------------------------------------------------------------------------- /lib/daily-forecast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Call-for-Code/weather-api-nodejs/HEAD/lib/daily-forecast.js -------------------------------------------------------------------------------- /lib/severe-weather-power-disruption-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Call-for-Code/weather-api-nodejs/HEAD/lib/severe-weather-power-disruption-index.js -------------------------------------------------------------------------------- /lib/tropical-forecast-projected-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Call-for-Code/weather-api-nodejs/HEAD/lib/tropical-forecast-projected-path.js -------------------------------------------------------------------------------- /lib/weather-alert-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Call-for-Code/weather-api-nodejs/HEAD/lib/weather-alert-details.js -------------------------------------------------------------------------------- /lib/weather-alert-headlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Call-for-Code/weather-api-nodejs/HEAD/lib/weather-alert-headlines.js -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Call-for-Code/weather-api-nodejs/HEAD/manifest.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Call-for-Code/weather-api-nodejs/HEAD/package.json --------------------------------------------------------------------------------