https://github.com/jonomacc/computing-quotes
Simple API and web interface for quotes about computing
https://github.com/jonomacc/computing-quotes
express jamstack netlify-functions react serverless-functions
Last synced: about 2 months ago
JSON representation
Simple API and web interface for quotes about computing
- Host: GitHub
- URL: https://github.com/jonomacc/computing-quotes
- Owner: JonoMacC
- Created: 2020-06-08T23:08:17.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T09:05:49.000Z (over 3 years ago)
- Last Synced: 2025-07-04T06:08:41.973Z (12 months ago)
- Topics: express, jamstack, netlify-functions, react, serverless-functions
- Language: JavaScript
- Homepage: https://quotion.netlify.app
- Size: 2.73 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quotion: Computing Quotes
[](https://app.netlify.com/sites/quotion/deploys)
> This project was bootstrapped with [Create React App](https://create-react-app.dev)
A non-persistent API to CRUD (Create, Read, Update, Delete) quotes and their authors and a responsive web interface for interacting with the API.
Serverless Deployment
- Serverless Lambda with [Netlify Functions](https://github.com/netlify/create-react-app-lambda)
- Express backend via [Serverless-HTTP](https://github.com/dougmoscrop/serverless-http)
Server-Side Deployment
- Express backend
## Local Development
### Using Serverless Lambda Functions
You will need to have the Netlify CLI installed
npm install netlify-cli -g
netlify login
In your terminal
yarn
ntl dev
You can view the app by navigating to **http://localhost:3000/** in your browser.
### Using Node Server
You will need to create a .env file with the following (n.b. no spaces)
REACT_APP_LOCAL=true
In your terminal
node server
Open another terminal
yarn start
You can view the app by navigating to **http://localhost:3000/** in your browser.