Skip to content

Latest commit

 

History

History
34 lines (19 loc) · 1.94 KB

code-best-practices.md

File metadata and controls

34 lines (19 loc) · 1.94 KB

Code Best Practices

When we work with scalable projects, it's importante that we have a pattern in the implementation of our code and follow the best practices. To garantee that our code have a good quality, we need to analyse differents levels of our code.

Clean Code

This is the most abstract level of code standardization. It's related to the implementations independent of the programming language. It will help the readability of your code.

Clean Code Javascript Clean Code Book

Naming

One of the most important points of the Clean Code is how you name your functions, variables, etc. Use this amazing guide to understand how to write better variable names.

Naming Cheatsheet

Javascript

Moving on to the language level, it's important to know all the nuances of Javascript to write good code in React, after all, if you don't have a solid base, you'll never be able to build a stable building.

MORE IMPORTANT FOR REACT⚛ JavaScript to Know for React

You Dont Know JS 33 Concepts Every JavaScript Developer Should Know

React

React is a framework that gives you the freedom to implement the various features in the way you prefer. This on the one hand is good because we are not stuck to a certain standard, but it also leaves room for us not to use its full potential and make mistakes that we don't know how to correct.

For this, it is important that we know the Documentation

It is also important that we know the main implementation patterns with the framework.