Refactoring TypeScript: Keeping your code healthy
Authors: James Hickey
ISBN-10: 1839218045
ISBN-13: 9781839218040
Released: 2019-10-18
Print Length 页数: 120 pages
Book Description
Discover various techniques to develop maintainable code and keep it in shape.
Refactoring improves your code without changing its behavior. With refactoring,the best approach is to apply small targeted changes to a codebase. Instead of doing a huge sweeping change to your code,refactoring is better as a long-term and continuous enterprise. Refactoring TypeScript explains how to spot bugs and remove them from your code.
You’ll start by seeing how wordy conditionals,methods,and null checks make code unhealthy and unstable. Whether it is identifying messy nested conditionals or removing unnecessary methods,this book will show various techniques to avoid these pitfalls and write code that is easier to understand,maintain,and test.
By the end of the book,you’ll have learned some of the main causes of unhealthy code,tips to identify them and techniques to address them.
What you will learn
Spot and fix common code smells to create code that is easier to read and understand
Discover ways to identify long methods and refactor them
Create objects that keep your code flexible,maintainable,and testable
Apply the Single Responsibility Principle to develop less-coupled code
Discover how to combine different refactoring techniques
Learn ways to solve the issues caused by overusing primitives
Preface
Chapter 1
Introduction
Chapter 2
Null Checks Everywhere!
Chapter 3
Wordy Conditionals
Chapter4
Nested Conditionals
Chapter 5
Primitive Overuse
Chapter 6
Lengthy Method Signatures
Chapter 7
Methods That Never End
Chapter8
Dumping Grounds
Chapter 9
Messy Object Creation
Chapter 10
Conclusion