Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stevenxl/readable
Udacity React Nanodegree Project
https://github.com/stevenxl/readable
Last synced: about 1 month ago
JSON representation
Udacity React Nanodegree Project
- Host: GitHub
- URL: https://github.com/stevenxl/readable
- Owner: StevenXL
- Created: 2017-10-09T14:50:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-12T01:28:48.000Z (over 7 years ago)
- Last Synced: 2024-11-30T12:33:39.525Z (about 2 months ago)
- Language: JavaScript
- Size: 146 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Readable
## Purpose
A barebones Reddit clone that allows user to create posts in categories,
comment on the posts, and upvote / downvote posts and categories.## Installation
This application can be installed with the following command:
```bash
npm install
```## Startup
The front-end application **assumes** there is a server back-end running on port
`3001`. To change this configuration, please take a look at the `proxy` property
of the `package.json` file. Please see the section titled `Server` below for
starting a back-end that can communicate with the front-end.After starting your back-end, you can run `npm start` to start the front-end
application.## Server
This project does not ship with the back-end application. The back-end
application can be found [at this
repo](https://github.com/udacity/reactnd-project-readable-starter).Within the repository above, there is the main `README.md` file, as well as
[separate
README.md](https://github.com/udacity/reactnd-project-readable-starter/blob/master/api-server/README.md)
outlining the api endpoints of the server.