Retrieve weather data for a specific zipcode. No API keys required! The name is a misnomer because the app no longer uses Weather Underground.
npm install weather-underground-by-zip
const weather = require('weather-underground-by-zip')();
const zipcode = 90210;
await require("util").promisify(weather.request)(zipcode);
//{description: "Partly cloudy", location: "Beverly Hills, CA", temperature: 68, temperatureUnit: "F"}
npm test
MIT