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

https://github.com/sawyerdeveloper/reactdesignpattern

An example of a React architecture design pattern that replaces redux and has minimal dependencies.
https://github.com/sawyerdeveloper/reactdesignpattern

Last synced: 11 months ago
JSON representation

An example of a React architecture design pattern that replaces redux and has minimal dependencies.

Awesome Lists containing this project

README

          

# React Design Pattern

This repository is an example of how to design the code for a React(Dom or Native) app where you don't need Redux for state management or external CSS files for styling. In my professional experience these are the 2 biggest causes of problems in modern development.

This gave me the idea to make ReBorn Framework. [ReBorn](https://github.com/sawyerDeveloper/ReBorn)

## Usage
Install [nodemon](https://github.com/remy/nodemon) globally

```
npm i nodemon -g
```

Install server and client dependencies

```
npm install
cd client
npm install
```

To start the server and client at the same time (from the root of the project)

```
npm run dev
```

## Example
Check out the latest running code at https://react-design-pattern.herokuapp.com/

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

## License
[MIT](https://choosealicense.com/licenses/mit/)