Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```