|
| 1 | +<p align="center"> |
| 2 | + <a href="https://codely.com"> |
| 3 | + <img src="https://user-images.githubusercontent.com/10558907/170513882-a09eee57-7765-4ca4-b2dd-3c2e061fdad0.png" width="300px" height="92px" alt="Codely logo"/> |
| 4 | + </a> |
| 5 | +</p> |
| 6 | + |
| 7 | +<h1 align="center"> |
| 8 | + <⚡⚛️> Vite React Best Practices Template (by Codely) |
| 9 | +</h1> |
| 10 | + |
| 11 | +<p align="center"> |
| 12 | + <a href="https://github.com/CodelyTV/vite-react_best_practices-template/actions/workflows/tests.yml"><img src="https://github.com/CodelyTV/vite-react_best_practices-template/actions/workflows/tests.yml/badge.svg" alt="Build status"/></a> |
| 13 | + <a href="https://github.com/CodelyTV"><img src="https://img.shields.io/badge/CodelyTV-OS-green.svg?style=flat-square" alt="Codely Open Source"/></a> |
| 14 | + <a href="https://pro.codely.com"><img src="https://img.shields.io/badge/CodelyTV-PRO-black.svg?style=flat-square" alt="Codely Pro Courses"/></a> |
| 15 | +</p> |
| 16 | + |
| 17 | +<p align="center"> |
| 18 | + Template for creating React apps with TypeScript following best practices: Unit and end-to-end tests, Continuous Integration, and linting. |
| 19 | + <br /> |
| 20 | + <br /> |
| 21 | + <a href="https://github.com/CodelyTV/vite-react_best_practices-template/stargazers">Stars are welcome 😊</a> |
| 22 | +</p> |
| 23 | + |
| 24 | +## ⚡ Using this Vite template |
| 25 | + |
| 26 | +1. Create your project based on this template: |
| 27 | + - a) If you want to create a GitHub repository, we would recommend to use the GitHub "Use this template" button and clone your newly created repository |
| 28 | + - b) If you prefer to just create a local project, you can use [degit](https://github.com/Rich-Harris/degit): |
| 29 | + ```bash |
| 30 | + npx degit CodelyTV/vite-react_best_practices-template#main my-app |
| 31 | + ``` |
| 32 | +2. Update your project meta-information: |
| 33 | + - [ ] Update the [`package.json`](https://github.com/CodelyTV/vite-react_best_practices-template/blob/main/package.json): |
| 34 | + - [ ] Specify proper values for the `name`, `author` and `license` properties |
| 35 | + - [ ] Remove the `private` property if you plan to publish the app as a npm package |
| 36 | + - [ ] Change the author in [`LICENSE`](https://github.com/CodelyTV/vite-react_best_practices-template/blob/main/LICENSE) |
| 37 | + - [ ] Change the title in [`index.html`](https://github.com/CodelyTV/vite-react_best_practices-template/blob/main/index.html) |
| 38 | + - [ ] Replace the favicon in the [`public`](https://github.com/CodelyTV/vite-react_best_practices-template/blob/main/public) directory |
| 39 | + - [ ] Clean up this [`README.md`](https://github.com/CodelyTV/vite-react_best_practices-template/blob/main/README.md) |
| 40 | +3. Run your app: |
| 41 | + 1. `cd my-app`: Move to your project root directory |
| 42 | + 2. `npm install`: Install all the project dependencies |
| 43 | + 3. `npm start`: Start the development server on [localhost:3000](http://localhost:3000) |
| 44 | + |
| 45 | +## ✅ Testing |
| 46 | + |
| 47 | +### Unit tests |
| 48 | + |
| 49 | +`npm run test`: Run unit tests with Jest and React Testing Library |
| 50 | + |
| 51 | +### End-to-end tests |
| 52 | + |
| 53 | +1. `npm start`: Start the development server on [localhost:3000](http://localhost:3000) |
| 54 | +2. Run end-to-end tests with Cypress choosing one of the following options: |
| 55 | + - `npm run cy:open`: Open Cypress in dev mode |
| 56 | + - `npm run cy:run`: Execute Cypress in CLI |
| 57 | + |
| 58 | +## 🔦 Linting |
| 59 | + |
| 60 | +- `npm run lint`: Run linter |
| 61 | +- `npm run lint:fix`: Fix lint issues |
| 62 | + |
| 63 | +## 🌈 Tech Stack |
| 64 | + |
| 65 | +- [TypeScript](https://www.typescriptlang.org) |
| 66 | +- [ESLint](https://eslint.org) and [Prettier](https://prettier.io) already configured with the [🤏 Codely's configuration](https://github.com/CodelyTV/eslint-config-codely) |
| 67 | +- [Jest](https://jestjs.io) with [React Testing Library](https://testing-library.com/docs/react-testing-library/intro) for the unit tests |
| 68 | +- [Cypress](https://www.cypress.io) with [Testing Library](https://testing-library.com/docs/cypress-testing-library) for the end-to-end tests |
| 69 | +- [GitHub Action Workflows](https://github.com/features/actions) set up to run tests and linting on push |
| 70 | +- [Makefile](https://github.com/CodelyTV/vite-react_best_practices-template/blob/main/Makefile) for standardize how to run projects |
| 71 | +- [Sass](https://sass-lang.com) to supercharge CSS with nested classes and more fun |
| 72 | +- [.editorconfig](https://editorconfig.org) for sharing the IDE config |
| 73 | +
|
| 74 | +## 🤔 FAQ |
| 75 | +
|
| 76 | +### 🤷♂️ Why Vite and not Next.js, Remix, or Create React App |
| 77 | +
|
| 78 | +React updated the official recommendation about how to start a new project. Previously, they recommended Create React App (CRA) and we did [this very same template based on CRA](https://github.com/CodelyTV/cra-template-codely), and right now they recommend to directly use a framework like Next.js, Remix, or Gatsby. |
| 79 | +
|
| 80 | +However, they also include an specific section in the official documentation on how to use React without a framework, and the recommended way is to use Vite or Parcel. |
| 81 | +
|
| 82 | +Even if not using a framework such as Next.js is something to double check, we are interested into having this template for use cases where you are not interested into the benefits of a complete framework. For instance, theses cases could be as simple as learning the React.js features and limitations in order to have a clear vision where React ends and a framework starts. This is something we do in [our React video course](https://pro.codely.com/library/react-de-0-aplicando-buenas-practicas-192069/460310/about/). |
| 83 | +
|
| 84 | +### 👻 Why not adding `.vscode` or `.idea` to the `.gitignore` template |
| 85 | +
|
| 86 | +These are folders created due to personal environment preferences. We should ignore these personal development environment preferences to be ignored using your global `.gitignore` file and leave the project `.gitignore` file as clean as possible, that is, only containing the project specific rules. |
| 87 | +
|
| 88 | +You can create a `.gitignore_global` file with rules that will apply to all your repositories with: |
| 89 | +
|
| 90 | +```bash |
| 91 | +touch ~/.gitignore_global |
| 92 | +git config --global core.excludesfile ~/.gitignore_global |
| 93 | +``` |
| 94 | +
|
| 95 | +## 👌 Codely Code Quality Standards |
| 96 | +
|
| 97 | +Publishing this package we are committing ourselves to the following code quality standards: |
| 98 | +
|
| 99 | +- 🤝 Respect **Semantic Versioning**: No breaking changes in patch or minor versions |
| 100 | +- 🤏 No surprises in transitive dependencies: Use the **bare minimum dependencies** needed to meet the purpose |
| 101 | +- 🎯 **One specific purpose** to meet without having to carry a bunch of unnecessary other utilities |
| 102 | +- ✅ **Tests** as documentation and usage examples |
| 103 | +- 📖 **Well documented ReadMe** showing how to install and use |
| 104 | +- ⚖️ **License favoring Open Source** and collaboration |
| 105 | +
|
| 106 | +## 🔀 Related information |
| 107 | +
|
| 108 | +This application was generated using the [<⚡⚛️> Vite React Best Practices Template](https://github.com/CodelyTV/vite-react_best_practices-template). Feel free to check it out and star the repo! 🌟😊🙌 |
0 commit comments