Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/loconluis/weather-app
Learning about Asyncrhonous NodeJS
https://github.com/loconluis/weather-app
Last synced: 16 days ago
JSON representation
Learning about Asyncrhonous NodeJS
- Host: GitHub
- URL: https://github.com/loconluis/weather-app
- Owner: loconluis
- Created: 2017-10-13T00:05:54.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-01-04T21:52:04.000Z (about 4 years ago)
- Last Synced: 2023-02-27T05:56:49.033Z (almost 2 years ago)
- Language: JavaScript
- Size: 47.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# weather-app
Es una aplicacion de terminal que funciona pasando un argumento -address
Ejemplo:
- `$ node app.js -a='Guatemala'`### Instalacion
weather-app requiere [Node.js](https://nodejs.org/) v6+ to run.
Instala las depedendecias y corre la aplicación.
```
$ cd weather-app
$ npm install
$ node app.js -a=''
```### ¿Como usar?
| Argumento | Función |
| ------ | ------ |
| --address, -a | Es el argumento que reconoce que ingresas una direccion. |
| --help, -h | Te ayuda a ver las opciones de funcionalidad. |Esta aplicacion utiliza el api de [geolocalizacion de google](https://developers.google.com/maps/).
Para devolver los valores del clima esta aplicacion usa el API de [Forecast.io](http://forecast.io/)
### ¿Como utilizar el api de Forecast.io ?
| KEYWORDS | Descripción |
| ------ | ------ |
| darkSky.API_KEY | Al registrarse para uso del API, forecast te devuelve un API para uso personal. Eso significa el keyword en los archivos. |
| darkSky.API | El endpoint del API, donde se pueden hacer las consultas. |Code with ♥ by [LoconLuis](https://twitter.com/loconluis)