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
- Host: GitHub
- URL: https://github.com/snoopycodex/todolistapp-react
- Owner: SnoopyCodeX
- Created: 2023-03-09T04:23:00.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-04T09:38:07.000Z (over 2 years ago)
- Last Synced: 2025-01-23T15:37:46.059Z (about 1 year ago)
- Topics: ngrok, nodejs, npm, reactjs, todoapp, todoapp-react
- Language: JavaScript
- Homepage: https://github.com/SnoopyCodeX/TodoListApp-React
- Size: 242 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```