Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/pedrobslisboa/create-react-redux-app
- Owner: pedrobslisboa
- Created: 2018-09-03T18:04:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-03T19:27:31.000Z (over 6 years ago)
- Last Synced: 2024-10-29T18:24:00.744Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 143 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```