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

https://github.com/jgudo/react-weather-app

basic weather app built with react
https://github.com/jgudo/react-weather-app

ipdata openweathermap-api react react-openweathermap react-weather-app react-weatherbit weather-app weatherbit

Last synced: about 2 months ago
JSON representation

basic weather app built with react

Awesome Lists containing this project

README

        

# React Weather Application
Visit live demo here

### Install Dependencies
```sh
$ npm install
```
### Get API key
Get a free api key from IPdata. Get it [here](https://ipdata.co/)
Get a free api key from WeatherBit. Get it [here](https://www.weatherbit.io/account/create)

Create a .env file in the root of your project folder and name it _.env.development_
and add the following

```
IPDATA_API_KEY=[yourapikey]
WEATHERBIT_KEY=[yourapikey]
```

### Run development server
```sh
$ npm run dev-server
```

### Build the project
```sh
$ npm run build
```