ArunasNorvaisa / react-weather-app

An attempt to make an ultimate weather app. In ReactJS, with React hooks and context.

Home Page:https://reactweatherapp.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Weather application

React weather app

Weather app made with ReactJS. Automatically recognizes user's location, based on browser's settings or IP. Weather can be searched both by location on the map or entering city in the search bar.

Made using React hooks (useState, useEffect, useContext) and React context (absolutely unnecessary for a small application like this, but it was fun to learn).

Version

  • 3.1.0

Demo

Usage:

$ git clone git@github.com:ArunasNorvaisa/react-weather-app.git
$ cd react-weather-app
$ npm i -d (OR $ yarn)
$ touch .env
$ touch ./proxy/env.json
  • Get 2 (two) API keys from Google and 1 (one) from Open Weather Map.
  • Update .env file in the project root (that was created at the previous step) directory with the following content:

API_KEY_GOOGLE_GEOCODING = YOUR_GOOGLE_GEOCODING_API_KEY
API_KEY_GOOGLE_MAPS = YOUR_GOOGLE_MAPS_API_KEY
API_KEY_OW = YOUR_OPENWEATHERMAP_API_KEY

This will prevent keys to be uploaded to the git repository, however anyone with at least half of the brain still be able to see them in plain text.

If (and ONLY if) you care about security of your API keys:

We'll be using 2 PHP proxies to access the Openweathermap and Google geocoding services from the backend, so the keys wouldn't be exposed to anyone who knows how to use browser's dev tools.

  • Update ./proxy/env.json file with the following content (please note the quotes - they are required here, unlike in .env):
{
  "API_KEY_GOOGLE_GEOCODING" = "YOUR_GOOGLE_GEOCODING_API_KEY"
  "API_KEY_OW": "YOUR_OPENWEATHERMAP_API_KEY"
}
  • Update ./proxy/.htaccess file to reflect your referring domain.
  • Read comments in /components/Weather.jsx and /components/App.jsx to either enable or disable proxy.

Run your App:

$ npm run start (OR $yarn run start)

App will be accessible at http://localhost:8080

Build your App:

$ npm run build:prod (OR $yarn run build:prod)
  • Open /build/index.html in your browser and, if everything works as intended,
  • Upload contents of BUILD folder to your hosting provider.

Support:

About

An attempt to make an ultimate weather app. In ReactJS, with React hooks and context.

https://reactweatherapp.com


Languages

Language:JavaScript 67.8%Language:SCSS 21.1%Language:PHP 5.7%Language:HTML 5.4%