https://github.com/adityamr15/bmkg-weather
https://github.com/adityamr15/bmkg-weather
bmkg bmkg-temperature bmkg-weather
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/adityamr15/bmkg-weather
- Owner: adityamr15
- License: mit
- Created: 2023-04-28T19:24:42.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-04-29T17:08:36.000Z (about 2 years ago)
- Last Synced: 2025-01-23T22:16:56.362Z (5 months ago)
- Topics: bmkg, bmkg-temperature, bmkg-weather
- Language: TypeScript
- Homepage: https://adityamr15.github.io/bmkg-weather/
- Size: 191 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# bmkg-weather


NodeJS BMKG Weather Service
### Install
```
npm install bmkg-weather
```or
```
yarn add bmkg-weather
```### Implementation
```typescript
import BMKGWeather from 'bmkg-weather';const result = await BMKGWeather.getAll();
console.log(result);
const searchResult = await BMKGWeather.getAll({ query: 'sumbawa' });
console.log(searchResult);
```