A module that makes it easy to get the Temperature for 7 Days, Location and State for anywhere in the world.
npm install weatherhub
npm install weatherhub
`
`
yarn add weatherhub
`
$3
Here's a quick example of getting the weather for Ghaziabad:
`js
const weatherhub = require('weatherhub');
const address = ''; // Ghaziabad
const access_token = ''; // token api.mapbox
const token = ''; // darksky token
// now() returns a Promise
const weather = weatherhub(address, access_token, token).then((results) => {
console.log(results);
});
``