Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rmwalls/readinglist
Reading List App
https://github.com/rmwalls/readinglist
mern mongo react react-router
Last synced: 29 days ago
JSON representation
Reading List App
- Host: GitHub
- URL: https://github.com/rmwalls/readinglist
- Owner: rmwalls
- Created: 2019-08-30T01:13:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T09:19:27.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T05:23:13.828Z (almost 2 years ago)
- Topics: mern, mongo, react, react-router
- Language: JavaScript
- Homepage:
- Size: 2.15 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 36
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Create React Express App
## About This Boilerplate
This setup allows for a Node/Express/React app which can be easily deployed to Heroku.
The front-end React app will auto-reload as it's updated via webpack dev server, and the backend Express app will auto-reload independently with nodemon.
## Starting the app locally
Start by installing front and backend dependencies. While in this directory, run the following command:
```
npm install
```This should install node modules within the server and the client folder.
After both installations complete, run the following command in your terminal:
```
npm start
```Your app should now be running on . The Express server should intercept any AJAX requests from the client.
## Deployment (Heroku)
To deploy, simply add and commit your changes, and push to Heroku. As is, the NPM scripts should take care of the rest.