DEV Community

Cover image for Articles Referenced for Building an SPA with React and Redux
Kenta Takeuchi
Kenta Takeuchi

Posted on • Originally published at bmf-tech.com

Articles Referenced for Building an SPA with React and Redux

This article was originally published on bmf-tech.com.

This is a rough memo.
Here are the repositories and articles I referred to when trying to build an SPA with React and Redux.

There was a decent amount of information in Japanese to understand the concept of the Redux architecture.
However, finding source code that seemed useful for what I wanted to create took a bit of effort.
Differences in JS specifications, build environments like compilers and task runners, differences in React versions, and related package versions were quite challenging for someone like me who has been focused on PHP...

After researching various things, I finally got to the point where I could start working, so I am listing the repositories and articles that were helpful at that time.

This will be updated as needed.

Reference URL List

github - onerciller/react-redux-laravel
https://github.com/onerciller/react-redux-laravel

github - rajaraodv/react-redux-blog
https://github.com/rajaraodv/react-redux-blog

github - mustafawm/blogapp
https://github.com/mustafawm/blogapp

github - mzabriskie/axios
https://github.com/mzabriskie/axios#handling-errors

React-Redux explained clearly and partially implemented practically
http://ma3tk.hateblo.jp/entry/2016/06/20/182232

Using Redux Form in a React + Redux project: summary and points to note
http://ichimaruni-design.com/2016/10/react-redux-form/

Reusing components with Redux
http://qiita.com/kuy/items/869aeb7b403ea7a8fd8a

[Redux Introduction] Understanding the concept of React + Redux
http://okakacacao.wpblog.jp/technology/what-is-redux

Redux Introduction Day 6: Connecting Redux and React (Official Document Translation)
http://qiita.com/kiita312/items/d769c85f446994349b52

Where should client-side validation be done in Redux?
http://qiita.com/inuscript/items/5bed7812b3c1447b7b60

Explaining Redux implementation and React integration using a super simple sample
http://mae.chab.in/archives/2885

React-Redux explained clearly and partially implemented practically
http://ma3tk.hateblo.jp/entry/2016/06/20/182232

Redux Introduction Day 3: Basics of Redux and Reducers (Official Document Translation)
http://qiita.com/kiita312/items/7fdce94912d6d9c801f8

[React/Redux] What I'm watching | Container Components
http://kenjimorita.jp/read1/

Why do you need to use Middleware for asynchronous processing in Redux?
http://qiita.com/enshi/items/557dcd7df60e6128249e

Creating a todo app with asynchronous processing using react+redux
http://qiita.com/halhide/items/a45c7a1d5f949596e17d

Let's start now, ES6~ECMAScript6 basic syntax summary (JavaScript)~
http://qiita.com/takeharu/items/cbbe017bbdd120015ca0

How to structure directories in development using React-Redux and how to assemble them
http://watanabeyu.blogspot.jp/2016/08/react-redux.html

Connecting Mapdisptachtoprops in V6 reduxForm()
https://github.com/erikras/redux-form/issues/1050

react-router URL parameters cause 404 when directly entered
https://teratail.com/questions/26245

redux-form Multiple field errors?
https://github.com/erikras/redux-form/issues/639

Redux Form -Submit Validation Example
http://redux-form.com/6.0.0-alpha.4/examples/submitValidation/

throw new SubmissionError() causing Uncaught (in promise) error
https://github.com/erikras/redux-form/issues/2269

redux-form textarea value not updating
http://stackoverflow.com/questions/40970691/redux-form-textarea-value-not-updating

Impressions

I would like to explore more GitHub code.

Top comments (0)