Skip to content

CalaoJuanPablo/todos

 
 

Repository files navigation

Idiomatic Redux TODO List

This is an example of redux in react apps. This code was forked from a Dan Abramov repo.

This app use a fake backend in order to ilustrate the flow of how to manage async actions with redux.

Run local

Follow the next steps to run this project locally:

  1. Clone the repo

Run the following on terminal:

git clone https://github.com/CalaoJuanPablo/todos.git

cd todos

  1. Install dependencies

Install all the dependencies for the project (NOTE: You must have node and npm and/or yarn installed):

npm install

yarn install

  1. Run the development server

You can run a developer server in localhost:3000

npm start

Run a production build

If you want to run a production build then follow next steps:

  1. Perform a build for production

npm run build

This will build all the app in a folder called dist where you can find all the code minified.

  1. Serve the production build

npm run serve

This will serve the production build in localhost:5000

About

Examples for “Idiomatic Redux”: one branch per lesson

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 85.8%
  • CSS 12.5%
  • HTML 1.7%