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.
- Host: GitHub
- URL: https://github.com/sawyerdeveloper/reactdesignpattern
- Owner: sawyerDeveloper
- Created: 2018-12-20T21:33:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-24T06:10:08.000Z (over 7 years ago)
- Last Synced: 2025-03-22T07:33:54.839Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://react-design-pattern.herokuapp.com/
- Size: 150 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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/)