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

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#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

###Suggestions and Feedback Click here if you have any feedback or suggestions.

About

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

License:MIT License


Languages

Language:JavaScript 66.1%Language:HTML 20.5%Language:CSS 13.4%