Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bradtraversy/react-crash-2021
Task tracking application from the React crash course
https://github.com/bradtraversy/react-crash-2021
Last synced: 6 days ago
JSON representation
Task tracking application from the React crash course
- Host: GitHub
- URL: https://github.com/bradtraversy/react-crash-2021
- Owner: bradtraversy
- Created: 2021-01-18T14:40:37.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-05-27T02:22:47.000Z (over 1 year ago)
- Last Synced: 2024-12-27T13:05:02.171Z (13 days ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 1,369
- Watchers: 17
- Forks: 1,711
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Crash Course 2021 (Task Tracker App)
This is the project from the [YouTube crash course](https://www.youtube.com/watch?v=w7ejDZ8SWv8). It includes the react ui as well as JSON-server for our mock backend
## Usage
### Install dependencies
```
npm install
```### Run React dev server (http://localhost:3000)
```
npm start
```### Run the JSON server (http://localhost:5000)
```
npm run server
```### To build for production
```
npm run build
```