weatherjslib
v1.0.2
Published
A node.js library which interacts with the [weather api](https://www.weatherapi.com)
Downloads
2
Readme
weatherjslib
A node.js library which interacts with the weather api
Install:
npm i weatherjslib
Example:
const weatherjslib = require('weatherjslib')
const weather = new weatherjslib('API-KEY')
weather.forecast.get('London', 5).then(forecast => console.log(forecast))
weather.current.get('San Francisco').then(current => console.log(current))
Documentation: Click Here