Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pedrobslisboa/create-react-redux-app

Simple React App with Redux
https://github.com/pedrobslisboa/create-react-redux-app

Last synced: 26 days ago
JSON representation

Simple React App with Redux

Awesome Lists containing this project

README

        

* This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

# Simple React App with Redux and Thunk

This project is a simple react app with a friendly redux design and thunk for async request, you just need to start to code!

## DESIGN

.
├── public
├── src
├── js
├── components
├── Test.js
├── redux
├── actions
├── actionsTypes.js
├── asyncTest.action.js
├── test.action.js
├── initialState.js
├── reducers.js
└── store.js
...

## TUTORIAL

WRITING...

## USAGE

- clone this repo:
```
git clone https://github.com/pedrobslisboa/create-react-redux-app.git YOUR_APP_NAME_HERE
```
- change the name of the app at package.json:

```diff
{
- "name": "create-react-redux-app",
+ "name": "YOUR_APP_NAME_HERE",
"version": "0.1.0",
"private": true,

```

- install dependencies:
```
npm install
```
- run application:
```
npm start
```