Calls multiple sources for weather forecast in Portugal
$ npm install waves-portugal
const {IPMA} = require('waves-portugal');
const ipma = new IPMA();
ipma.forecast(42) // for Cabo Espichel, Portugal
.then(response => console.log(response))
.catch(error => console.log(error));
npm test