0.7.0 • Published 4 years ago

here-client v0.7.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

HERE.com JS client

CI npm language License

This is a simple JavaScript client for HERE.com APIs.

Supported APIs

Weather

To retrieve a Weather client you need to call client.weather:

  • Observation: weather.observation()
  • Hourly forecast: weather.hourlyForecast
  • Seven day forecast: weather.sevenDayForecast
  • Seven day forecast simple: weather.sevenDayForecastSimple

Examples

JavaScript

const HereClient = require('here-client').default;

const hereClient = new HereClient({ apiKey: 'foobar' });
hereClient.weather.observation({ name: 'Budapest' });

TypeScript

import HereClient from 'here-client';

const hereClient = new HereClient({ apiKey: 'foobar' });
hereClient.weather.observation({ name: 'Budapest' });
0.7.0

4 years ago

0.6.0

4 years ago

0.5.0

4 years ago

0.4.0

4 years ago

0.3.0

4 years ago

0.2.0

4 years ago

0.1.0

4 years ago