https://github.com/guoyunhe/material-app-template
useful React example code for copy-paste
https://github.com/guoyunhe/material-app-template
Last synced: about 1 month ago
JSON representation
useful React example code for copy-paste
- Host: GitHub
- URL: https://github.com/guoyunhe/material-app-template
- Owner: guoyunhe
- Created: 2022-10-24T02:53:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-19T07:30:28.000Z (about 1 year ago)
- Last Synced: 2024-05-19T16:24:13.094Z (about 1 year ago)
- Language: TypeScript
- Size: 716 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Material App Template
## Get Started
### Local Development
```bash
cp .env.example .env
npm install
npm start
```### Production Deployment
```bash
cp .env.example .env # Skip this step when deploy on Netlify etc.
npm install
npm run build
```## Technology Stack
- [vite](https://vitejs.dev/) - the build system
- [typescript](https://typescriptlang.org/) - the programming language
- [react](https://reactjs.org/) - the user interface framework
- [wouter](https://github.com/molefrog/wouter/) - the routing library for single-page-application
- [mui](https://mui.com/) - the design system and component library
- [i18next](https://react.i18next.com/) - the internationalization solution
- [xior](https://xior-http.com/) - the http client to send API requests
- [vitest](https://vitest.dev/) - the unit test runner
- [testing-library](https://testing-library.com/) - the unit test toolkit for react## About The Template
This app is generated from https://github.com/guoyunhe/mui-app-template
Issues and pull requests are always welcome.
Other front-end templates:
- https://github.com/guoyunhe/antd-app-template
- https://github.com/guoyunhe/antd-mobile-app-templateAnd back-end templates:
- https://github.com/guoyunhe/adonis-api-template