Skip to content

Latest commit

 

History

History
38 lines (22 loc) · 1.28 KB

README.md

File metadata and controls

38 lines (22 loc) · 1.28 KB

Redux Saga Shopping Cart Example

Took the shopping cart example from the redux-saga repo and turned it into a standalone Node.js app with additional redux-saga functionality and features as well as major refactoring for ease of understanding.

GitPitch Presentation on Generators and redux-saga:

Presentation link for this repo

Install Yarn(a better npm):

Run npm install -g yarn to install Yarn globally if not done already

Install all the dependencies:

yarn install

Then use one of the available scripts:

In the project directory, you can run:

yarn start

Runs the app in the development mode. Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits. You will also see any lint errors in the console.

yarn test

Runs all of your files under all __test__ directories as well as all files ending with .test.js

yarn build

Builds the app for production to the build folder. It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes. Your app is ready to be deployed!