1.0.20 • Published 9 years ago
yr-lib v1.0.20
Yr.no library
A simple library to call the Yr.no XML based api and return response in JSON
Installation
$ cd root project
$ npm install yr-libUsage
ES5
var LocationForecast = require('yr-lib').LocationForecast;
LocationForecast(lat, lon,function(data) {
//do something with data
});ES6
import { LocationForecast } from 'yr-lib';
LocationForecast(lat, lon, data => {
//do something with data
});Get weather in current day and time
ES5
var CurrentLocationForecast = require('yr-lib').CurrentLocationForecast;
CurrentLocationForecast(lat, lon, local_time, time_diff_hour, function(data) {
//do something with data
});ES6
import { CurrentLocationForecast } from 'yr-lib';
CurrentLocationForecast(lat, lon, local_time, time_diff_hour, data => {
//do something with data
});1.0.20
9 years ago
1.0.19
9 years ago
1.0.18
9 years ago
1.0.17
9 years ago
1.0.16
10 years ago
1.0.15
10 years ago
1.0.14
10 years ago
1.0.13
10 years ago
1.0.12
10 years ago
1.0.11
10 years ago
1.0.10
10 years ago
1.0.9
10 years ago
1.0.7
10 years ago
1.0.6
10 years ago
1.0.5
10 years ago
1.0.4
10 years ago
1.0.3
10 years ago
1.0.2
10 years ago
1.0.1
10 years ago
1.0.0
10 years ago