• Stars
    star
    147
  • Rank 244,138 (Top 5 %)
  • Language SCSS
  • License
    MIT License
  • Created about 1 year ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

<⚡⚛️> Start your React project with Vite following code best practices (TypeScript, Linting, testing, CI/CD…)

Codely logo

<⚡⚛️> Vite React Best Practices Template (by Codely)

Build status Codely Open Source Codely Pro Courses

Template for creating React apps with TypeScript following best practices: Unit and end-to-end tests, Continuous Integration, and linting.

Stars are welcome 😊

⚡ Using this Vite template

  1. Create your project based on this template:
    • 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
    • b) If you prefer to just create a local project, you can use degit:
      npx degit CodelyTV/vite-react_best_practices-template#main my-app
  2. Update your project meta-information:
    • Update the package.json:
      • Specify proper values for the name, author and license properties
      • Remove the private property if you plan to publish the app as a npm package
    • Change the author in LICENSE
    • Change the title in index.html
    • Replace the favicon in the public directory
    • Clean up this README.md
  3. Run your app:
    1. cd my-app: Move to your project root directory
    2. npm install: Install all the project dependencies
    3. npm start: Start the development server on localhost:3000

✅ Testing

Unit tests

npm run test: Run unit tests with Jest and React Testing Library

End-to-end tests

  1. npm start: Start the development server on localhost:3000
  2. Run end-to-end tests with Cypress choosing one of the following options:
  • npm run cy:open: Open Cypress in dev mode
  • npm run cy:run: Execute Cypress in CLI

🔦 Linting

  • npm run lint: Run linter
  • npm run lint:fix: Fix lint issues

🌈 Tech Stack

🤔 FAQ

🤷‍♂️ Why Vite and not Next.js, Remix, or Create React App

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, and right now they recommend to directly use a framework like Next.js, Remix, or Gatsby.

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.

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.

👻 Why not adding .vscode or .idea to the .gitignore template

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.

You can create a .gitignore_global file with rules that will apply to all your repositories with:

touch ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global

👌 Codely Code Quality Standards

Publishing this package we are committing ourselves to the following code quality standards:

  • 🤝 Respect Semantic Versioning: No breaking changes in patch or minor versions
  • 🤏 No surprises in transitive dependencies: Use the bare minimum dependencies needed to meet the purpose
  • 🎯 One specific purpose to meet without having to carry a bunch of unnecessary other utilities
  • Tests as documentation and usage examples
  • 📖 Well documented ReadMe showing how to install and use
  • ⚖️ License favoring Open Source and collaboration

🔀 Related information

This application was generated using the <⚡⚛️> Vite React Best Practices Template. Feel free to check it out and star the repo! 🌟😊🙌

More Repositories

1

php-ddd-example

🐘🎯 Hexagonal Architecture + DDD + CQRS in PHP using Symfony 6
PHP
2,889
star
2

typescript-ddd-example

🔷🎯 TypeScript DDD Example: Complete project applying Hexagonal Architecture and Domain-Driven Design patterns
TypeScript
1,222
star
3

dotly

🌚 Modular and easy to customize dotfiles framework
Shell
1,151
star
4

refactoring-code_smells-design_patterns

♻️ Example projects illustrating Code Smells in order to apply Refactoring techniques
PHP
553
star
5

typescript-ddd-skeleton

🔷✨ TypeScript DDD Skeleton: Bootstrap your new TypeScript applying following Hexagonal Architecture and Domain-Driven Design patterns
TypeScript
428
star
6

java-ddd-example

♨️ DDD in Java skeleton & examples. Course:
Java
390
star
7

cra-template-codely

<🌱⚛️> Create React App Codely template
SCSS
339
star
8

pr-size-labeler

🏷 Visualize and optionally limit the size of your Pull Requests
Shell
316
star
9

dotfiles

🐢 💨 Speedup your MacOS setup with this fine tuning settings
Shell
304
star
10

java-ddd-example-deprecated

☕🎯 Hexagonal Architecture + DDD + CQRS in a Java project using SpringBoot
Java
292
star
11

eslint-plugin-hexagonal-architecture

A plugin that helps you to enforce hexagonal architecture best practises
TypeScript
266
star
12

php-ddd-skeleton-deprecated

🐘🚀 PHP DDD Skeleton: Bootstrap your new projects or be inspired by this example project
PHP
249
star
13

javascript-basic-skeleton

JavaScript
208
star
14

typescript-api-skeleton

🔷🌍 TypeScript API Skeleton: Bootstrap your new TypeScript backend project
TypeScript
188
star
15

awesome-typescript-examples

✨ Awesome TypeScript Examples with complete show cases of how to take advantage of the language potential.
TypeScript
162
star
16

csharp-ddd-skeleton

🦈✨ C# DDD Skeleton: Bootstrap your new C# projects applying Hexagonal Architecture and Domain-Driven Design patterns
C#
153
star
17

job-offers

😊 Do you wanna work with us?
133
star
18

go-hexagonal_http_api-course

Ejemplos del curso de API HTTP en Go aplicando Arquitectura Hexagonal
Go
132
star
19

jetbrains-theme

🎨 A modern, productivity-increaser theme for all JetBrains IDEs
Shell
132
star
20

scala-ddd-example

λ🎯 Hexagonal Architecture + DDD + CQRS applied in Scala using Akka HTTP
Scala
130
star
21

typescript-basic-skeleton

🔷🌱 TypeScript Basic Skeleton: Bootstrap your new TypeScript project with the bare minimum dependencies
TypeScript
127
star
22

typescript-ddd-course

🔷🔖 TypeScript DDD Course: Learn Domain-Driven Design in TS lesson by lesson
TypeScript
118
star
23

golang-examples

Introductory examples to Go programming language used in the CodelyTV Pro course
Go
112
star
24

typescript-primitives-type

🧩 TypeScript utility type in order to ensure to return only properties (not methods) containing values in primitive types such as number or boolean (not Value Objects)
TypeScript
109
star
25

php-basic-skeleton

🐘🚀 PHP Basic Skeleton: Bootstrap your new projects using this Composer Project
PHP
103
star
26

eslint-config-codely

Opinionated linting configuration considering modern TypeScript best practices and providing consistency to your import statements. Valid for your JavaScript or TypeScript projects 🤟
JavaScript
80
star
27

java-solid-examples

Learn SOLID principles by examples in Java
Java
76
star
28

javascript-testing-frontend-course

JavaScript
74
star
29

frontend-hexagonal_architecture-course

Hexagonal Architecture in frontend
TypeScript
71
star
30

vscode-theme

A modern, good-looking, productivity-increaser theme for Visual Studio Code
58
star
31

p2p-editor

Online code editor based on P2P and JavaScript. Demo:
JavaScript
57
star
32

kotlin-api-skeleton

💎 Kotlin Hexagonal HTTP API template to create your new projects
Kotlin
52
star
33

react-from_zero_to_best_practices-course

Developer dashboard made in the "React from 0 with good practices" course
TypeScript
49
star
34

kotlin-basic-skeleton

A basic Skeleton to create your Kotlin apps easily
Kotlin
48
star
35

java-basic-skeleton

☕🚀 Java Bootstrap: Skeleton for your new projects
Java
46
star
36

php-coding_style-codely

PHP Coding Style rules we use in Codely
PHP
43
star
37

css-architecture-course

HTML
40
star
38

figma-plugin-skeleton

🪆 Template intended to serve as a starting point if you want to bootstrap a Figma Plugin in TypeScript.
TypeScript
34
star
39

elastic-stack-example

Simple app using Elastic Stack (Elasticsearch+Logstash+Kibana) & Beats with Docker for the CodelyTV Pro course
PHP
32
star
40

css-layouts-best-practises-course

Vue
32
star
41

developing_codely_website-course

Developing Codely's website course code examples https://pro.codely.tv/library/maquetando-la-web-de-codely-desde-0-181753
TypeScript
31
star
42

typescript-web-skeleton

🔷🕸️ TypeScript Web Skeleton: Bootstrap your new TypeScript web frontend project
JavaScript
31
star
43

java-gildedrose-kata

Java
30
star
44

awesome-p2p

A curated list of awesome P2P learning tutorials and resources
29
star
45

java-oop-examples

Object-Oriented Programming recap with Java examples
Java
29
star
46

youtube-code-examples

🎥 Collection of code examples used in our screencasts about programming best practices
PHP
29
star
47

n8n-nodes-twitch

n8n trigger node for Twitch: Execute workflows on stream start, stream end, and new follows
TypeScript
29
star
48

prometheus-course

🎓
Go
29
star
49

vscode-awesome-settings

Awesome Settings for VSCode
TypeScript
29
star
50

css-grid-course

HTML
28
star
51

bash-github_actions-skeleton

😬 Speedup your GitHub Actions creation!
Shell
27
star
52

frontend-hexagonal_architecture-example

TypeScript
27
star
53

css-flex-course

CSS Flex course examples
HTML
26
star
54

awesome-bash-challenges

Awesome Bash Challenges
Shell
25
star
55

php-finder_refactoring-kata

🐘🔍Incomprehensible Finder Refactoring Kata port for PHP
PHP
24
star
56

loki-grafana-course

24
star
57

design-patterns

Java
23
star
58

symfony-maintainable-scalable-course

Examples of "Symfony mantanible y escable" course
PHP
23
star
59

terraform-course

Terraform Codely course examples
HCL
23
star
60

react-devdash

Developer dashboard made in the "React from 0 with good practices" course
TypeScript
23
star
61

kotlin-hexagonal_http_api-course

💎 Kotlin Hexagonal HTTP API Course: Learn to do scalable Kotlin web apps
Kotlin
22
star
62

csharp-basic-skeleton

🦈🚀 C# Basic Skeleton: Bootstrap your new projects.
C#
22
star
63

figma-plugin-structurer

🏗️ Figma Plugin for speeding up and ensure consistency in the structure of your Figma projects
TypeScript
22
star
64

value_objects-course

Value Objects course examples
TypeScript
21
star
65

vue-progressive-migration-course

HTML
21
star
66

react-carousel

A React Carousel supporting different slides sizes, responsive, custom styling, accesible by default, SSR compatible, and tested
TypeScript
21
star
67

makefiles-course

Makefile
20
star
68

ci_with_github_actions-course

PHP
20
star
69

web-performance-course

Web performance course examples
CSS
20
star
70

check-critical-files

👁 Check for critical files in your commits
Shell
20
star
71

refactor-from-js-to-ts-course

TypeScript
20
star
72

vue-3-course

Vue
19
star
73

javascript-modern-course

JavaScript
19
star
74

ban-words

Shell
19
star
75

css-light-dark-mode-course

HTML
18
star
76

react-state-management-course

React State Management course examples
JavaScript
18
star
77

infrastructure_design-eventbus-aws-course

Infrastructure Design: AWS SQS as a Message Queue course examples
TypeScript
18
star
78

php-coupled_code-example

🐘🤷‍♂️ Simple demo of a coupled code to ilustrate how to refactor to CQRS & DDD
PHP
16
star
79

reactjs-video-favourites-app

Introductory examples to ReactJS used in the CodelyTV Pro course
JavaScript
16
star
80

no-pull-requests

🙅 GitHub Action to autoclose all Pull Requests
Shell
15
star
81

aggregates-course

Aggregates course examples
TypeScript
15
star
82

domain_modeling-domain_events-course

Domain Modeling: Domain Events course examples
TypeScript
15
star
83

scala-examples

ƛ🤔 Introduction to Scala CodelyTV Pro course examples
Scala
15
star
84

scala-basic-skeleton

Starting point if you want to bootstrap a project in Scala
Scala
15
star
85

design_patterns-criteria-course

Criteria Codely course examples
TypeScript
15
star
86

scala-basic-skeleton.g8

ƛ🚀 Starting point if you want to bootstrap a project in Scala
Scala
14
star
87

from-monolith-to-microservices-using-api-gateway

CodelyTV Course
PHP
13
star
88

linting-js-ts-course

Linting js and ts course examples
HTML
12
star
89

no-branches

🕊 GitHub Action to autoremove all branches
Shell
11
star
90

phpstorm-settings

Code and File Templates for PhpStorm following the PHP ecosystem conventions
PHP
11
star
91

eslint-plugin-no-default-parameters

A plugin that forbids the use of default parameters in functions, methods and constructors.
TypeScript
10
star
92

kotlin-introduction-course

Intro a Kotlin course examples
Kotlin
10
star
93

php-password_refactoring-kata

Ejercicio para practicar refactoring
PHP
10
star
94

csharp-finder_refactoring-kata

🦈🔍Incomprehensible Finder Refactoring Kata port for C#
C#
10
star
95

typescript-react_library-vite_template

Template for creating React libraries with TypeScript following best practices: Storybook for documentation, testing, Continuous Integration, and linting
TypeScript
8
star
96

scala-finder_refactoring-kata

Incomprehensible Finder Refactoring Kata Scala
Scala
8
star
97

cqrs-ddd-scala-example-deprecated

Repository moved to:
Scala
7
star
98

ddd_problems-domain_events_errors_handling-course

Examples of how to handle errors when publishing and consuming domain events
Java
7
star
99

css-selectors-best-practices-course

CSS course selector examples
HTML
7
star
100

elgato-key-light-air-gnome-extension

JavaScript
7
star