AccuWeather API simple wrapper
npm install accuweather-simple
const config = {
apikey: "XXXXXXXX",
language: "en-us"
};
const accuweatherSimple = require('accuweather-simple')(config);
accuweatherSimple.getWeather("santiago").then(result => console.log(result));
Output should be something like Expect showery weather tomorrow afternoon through tomorrow evening
npm test
In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.