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

https://github.com/snoopycodex/todolistapp-react

A simple todo list app made using reactjs. This is just a practice project for creating progressive web applications using ReactJS
https://github.com/snoopycodex/todolistapp-react

ngrok nodejs npm reactjs todoapp todoapp-react

Last synced: 27 days ago
JSON representation

A simple todo list app made using reactjs. This is just a practice project for creating progressive web applications using ReactJS

Awesome Lists containing this project

README

          

# TODO List App

A simple PWA (Progressive Web Application) made using reactjs

### :wrench: Building the application

```bash
npm run build

# Run the app as production build
serve -s build
```

### :house: Starting the app locally:

Start json-server first:

```bash
json-server --watch src/tasks.json --port 3001
```
Then start the application:

```bash
npm start
```

### :link: Exposing localhost publicly using ngrok

```bash
ngrok http http://localhost:3000
```