Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nil369/to-do-list_react.js
https://github.com/nil369/to-do-list_react.js
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/nil369/to-do-list_react.js
- Owner: Nil369
- Created: 2023-10-27T13:34:54.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-03T21:33:35.000Z (8 months ago)
- Last Synced: 2024-05-03T22:31:22.010Z (8 months ago)
- Language: JavaScript
- Homepage: https://akash-todo-app.vercel.app
- Size: 3.33 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
So to begin with follow the steps:
1.Create a folder => Open terminal in that folder2. In the terminal type the following command:
```sh
npx create-react-app my-appcd my-app
```
Type the name of your app you want to create & It will automatically generate files to get you started.My app name was todo.So it was generated in that way3.In the project directory, you can run:
### `npm start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.The page will reload when you make changes.\
You may also see any lint errors in the console.It will create a directory called `my-app` inside the current folder.
Inside that directory, it will generate the initial project structure and install the transitive dependencies:```
my-app/todo
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── public
│ ├── favicon.ico
│ ├── index.html
│ └── manifest.json
└── src
├── App.css
├── App.js
├── App.test.js
├── index.css
├── index.js
├── logo.svg
└── serviceWorker.js
└── setupTests.js
```