8000 GitHub - adityamr15/bmkg-weather
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

adityamr15/bmkg-weather

Repository files navigation

bmkg-weather

npm npm npm type definitions

NodeJS BMKG Weather Service

Install

npm install bmkg-weather

or

yarn add bmkg-weather

Implementation

import BMKGWeather from 'bmkg-weather';

const result = await BMKGWeather.getAll();

console.log(result);

const searchResult = await BMKGWeather.getAll({ query: 'sumbawa' });
console.log(searchResult);
0