App name and description: Todo-list for React course with Code the Dream.
Project demonstrate core React concepts and buitd a simple web application.
- create a new public repo on GitHub
- clone the repo locally
- scaffold Vite using CLI:
- Bootstrap a new project with command: npm create vite@latest . -- --template react
- Install with command: npm install
- Enhance VS Code's Built-in Linting with ESLint
- adding another plugin package, eslint-plugin-react, for additional usefulReact linting rules
- adding the rules for changes the error to a warning and suppresses warnings about not using prop-types
- Automatic Code Formatting with Prettier
- semicolons are consistently used
- quotes on imports are single quotes instead of double quotes
- the spacing between the array's brackets and its elements has been removed
- there are only one empty line between code blocks
- Start the development server with the command: npm run dev
- Open a browser to the Local link listed in the CLI - :5173 in the url. This is the port number that Vite serves content from locally
- You can see the application in your browser.