~timharek/d-yr

Deno module for accessing Yr. Also has a CLI-tool
chore(release): Bump version
refactor: Use nominatim module

clone

read-only
https://git.sr.ht/~timharek/d-yr
read/write
git@git.sr.ht:~timharek/d-yr

You can also use your local clone with git send-email.

Latest version JSR sourcehut GitHub mirror Codeberg mirror

builds.sr.ht status

#d-yr

Access Yr's weather API and Nominatim's names API for getting weather details about a specific location.

You can read more about the API's on met.yr.no and Nominatim.

This project has both a CLI and functions to access Yr.no's API.

#Usage

#Example for current weather

import { getCurrent } from "jsr:@timharek/d-yr";

const currentWeather = getCurrent("Bergen");
// do what you need to do with the weather data.

#Example for forecasted weather

import { getForecast } from "jsr:@timharek/d-yr";

const location = "Bergen";
const hoursAhead = 5;

const currentWeather = getForecast(location, hoursAhead);
// do what you need to do with the weather data.

#CLI

#Installation

deno install --allow-net=api.met.no,nominatim.openstreetmap.org \
  -n yr jsr:@timharek/d-yr/cli

You have now installed d-yr as yr.

#Usage

Run the CLI with:

# Current weather forecast for location
yr current Bergen
# OR forecast for location
yr forecast Bangkok 5
Do not follow this link