Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miryasha/googlebookssearch
https://github.com/miryasha/googlebookssearch
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/miryasha/googlebookssearch
- Owner: miryasha
- Created: 2020-12-01T00:01:23.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-01T16:28:37.000Z (about 4 years ago)
- Last Synced: 2023-07-19T20:33:25.549Z (over 1 year ago)
- Language: JavaScript
- Size: 893 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
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.