meta data for this page
This is an old revision of the document!
Setting Up Your Development Environment
1. VSCode (Visual Studio Code)
- Download and install: VSCode
- Essential Extensions:
- ESLint
- Prettier
- Material-UI Snippets
- GitLens
- Live Server
- [VSCode Documentation](https://code.visualstudio.com/docs)
2. Node.js and npm
- Download and install: Node.js
- Check installation:
node -v npm -v
3. Git
- Download and install: Git
- Basic setup:
git config --global user.name "Your Name" git config --global user.email "you@example.com"
4. Create React App
- Setting up a new React project:
npx create-react-app my-hackathon-app cd my-hackathon-app npm start
5. Material-UI
MaterialUI reduces your workload by providing some basic UI components so that you don’t have to write them yourself.
1. Install Material-UI:
npm install @mui/material @emotion/react @emotion/styled @mui/icons-material
2. Material-UI offers a wide range of components, view them at https://mui.com/material-ui/all-components/
3. [[https://mui.com/getting-started/installation/|Material-UI Documentation]]