mini-owm
Mini-OpenWeatherMap is a wrapper around Open Weather Map's One Call Api.
MiniOwm is simple but versatile. Use it in any of the following ways or mix and match.
Install
npm install mini-owm
Constructor parameters
import MiniOwm, { Units } from 'mini-owm';
const api = new MiniOwm(
'<your api key here>',
33.441792,
-94.037689,
'hourly,minutely'
Units.Metric
'de'
);
api.get().then(res => {
console.log(res);
});
Chaining
import MiniOwm from 'mini-owm';
const api = new MiniOwm();
api
.apiKey('<your api key here>')
.latitude(33.441792)
.longitude(-94.037689)
.exclude('hourly,minutely')
.metric()
.language('de')
.get()
.then(res => {
console.log(res);
});
Get Parameters
import MiniOwm, { Units } from 'mini-owm';
new MiniOwm()
.get({
apiKey: '<your api key here>',
coords: {
latitude: 33.441792,
longitude: -94.037689,
},
exclude: 'hourly,minutely',
units: Units.Metric,
language: 'de',
})
.then(res => {
console.log(res);
});
Development
- Notes:
- Written in TypeScript
- Compiled to UMD via WebPack
- Compiled to ES6 via TSC
- Typings generated by TSC
- Setup:
pnpm install
- Configure: create
.env
with contents: API_KEY=<your api key here>
- Serve:
pnpm run start
See index.ejs.
Runtimes
Latest tested runtimes
- node: 10.16.3
- pnpm: 2.15.1