Skip to content

jpsantosdeveloper7/React-Design-Patterns-and-Best-Practices

 
 

Repository files navigation

React Design Patterns and Best Practices

This is the code repository for React Design Patterns and Best Practices, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

Taking a complete journey through the most valuable design patterns in React, this book demonstrates how to apply design patterns and best practices in real-life situations, whether that’s for new or already existing projects. It will help you to make your applications more flexible, perform better, and easier to maintain – giving your workflow a huge boost when it comes to speed without reducing quality.

Instructions and Navigation

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter03. Also, the code for Chapter 1 and Chapter 2 is not present as these chapters contains basic examples to start with.

The code will look like the following:

const toLowerCase = input => {
const output = []
for (let i = 0; i < input.length; i++) {
output.push(input[i].toLowerCase())
}
return output
}

We will need a computer with a terminal, a node.js/npm environment, and a browser.

Related Products

About

Code repository for React Design Patterns and Best Practices, published by Packt

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 66.1%
  • HTML 20.5%
  • CSS 13.4%