/workshop-react-redux-weather-exercise

An exercise to learn React and Redux

Primary LanguageJavaScriptMIT LicenseMIT

js-standard-style

Workshop React + Redux

Weather Exercise

The goal is implement all application components (action creators, reducers, sagas, React components,...). You should fix the unit tests to achieve the goal.

Instructions

1. Install npm dependencies

npm install

2. Fix tests implementing application components

npm test

You can use a watcher to save time:

npm run test:watch

3. You can test manually the application starting a dev server with Hot Module Replacement & Redux dev-tools:

npm run server:dev

Open a browser and visit http://localhost:3000

4. The application is ready to be deployed

Run the following command which will compile all the necessary files in a /dist folder.

npm run build

After this you can start a production server for testing:

npm start

Code style

This project is using the standard rules:

npm run lint

js-standard-style