A simple Todo App made with React.
- MS Visual Studio Code
- React.js
- App
- Header
- Button
- Add Task (If Add Button is clicked)
- Tasks
- Task
- Header
This app is still in Developmental stage. While running this app donot refresh the page, any newly added task will be cleared.
A) Before running please make sure you have installed Node.js in your system. Open VS Code Terminal and goto the folder where you have downloaded this repo.
- Type
npm start
to run the development version of this app.
A) In directory of this repo, Run the following commands in Terminal:
npm build
to build the optimized production stage app.npm i -g serve
to install serve globally in your system.(Ignore this if serve is already installed)serve -s build -p 3000
will run the production build of this app at port 3000 of localhost.- Type
http://localhost:3000
on your browser to see the app.