https://github.com/codeep/react-express-boilerplate
A React Express Mongo Boilerplate to get started to development.
https://github.com/codeep/react-express-boilerplate
Last synced: 9 months ago
JSON representation
A React Express Mongo Boilerplate to get started to development.
- Host: GitHub
- URL: https://github.com/codeep/react-express-boilerplate
- Owner: codeep
- Created: 2018-03-04T15:57:56.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T01:32:50.000Z (about 3 years ago)
- Last Synced: 2025-04-05T06:31:43.137Z (10 months ago)
- Language: JavaScript
- Size: 1.36 MB
- Stars: 9
- Watchers: 1
- Forks: 9
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# REACT EXPRESS Boilerplate
This is a sophisticated boilerplate that uses React on front-end and Node.js (Express) on back-end.
This boilerplate is empowered by the following technologies:
• Redux
• Redux-saga
• Mongoose
• Material-UI
• Moment
It's a usable CRUD (Create, Read, Update, Delete) app, using todo-s to illustrate that.
Follow the steps below to get started using this boilerplate for your project!
### Prerequisites
• Node - version >= 7
• npm - version >= 4
• MongoDB - any version
## Install
First, clone the repository via git:
```bash
$ git clone https://github.com/codeep/React-Express-Boilerplate.git
```
Then, install dependencies using npm.
```bash
$ cd React-Express-Boilerplate
$ npm install
```
## Run
Start the app:
```bash
$ npm start
```
This command will start the React application and API simultaneously.
Try to add, edit, and delete todos and enjoy all the functionalities provided.