UNPKG

weather

Version:

An easy way to fetch the weather.

13 lines (10 loc) 235 B
const Weather = require('../src/index'); const appID = ''; const appCode = ''; const weather = new Weather({ appID, appCode }); weather.now('Brisbane, Australia').then((results) => { console.log(results); });