Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 1.18 KB

README.md

File metadata and controls

27 lines (22 loc) · 1.18 KB

React OpenWeather component

React component that implements the basic functions of weather display on the user's location and the selected cities.

For build use commands

$ npm i
$ npm run build

Struct of config.js

module.exports = {
  "appID": "you OpenWeather appID"
}

Different branches of the project:

  • [m] m-branch: The first branch of the project includes the implementation of a standard javascript with Strict Mode.
  • [es6] es6-branch: Component is written using standard ES2015. (parent: m)
  • [webpack] webpack-branch: Used npm module: webpack. To create an assembly that will work without additional libraries. (parent: es6)
  • [redux] redux-branch: Component rewritten for architecture Flux and using her standard implementation Redux. (parent: webpack)