Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ruslanguns/npm-openweather-api


https://github.com/ruslanguns/npm-openweather-api

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

        

# OpenWeather API

Con esta librería podremos consumir las API de openweather.org y utilizarla en nuestros proyectos.

## Instalación

Javascript
```javascript
var API = require('proj-2-openweather').ApiService;
```

TypeScript
```typescript
import ApiService from 'proj-2-openweather';
```

### Uso de modulo

Debemos obtener el API Key desde una cuenta en openweather.org

```typescript
const api = new ApiService(APIKEY, 'm', 'es');

API.buscarPorZIP( '28001', 'es').then(
data => console.log( data )
).catch( error => console.log( error ));
```