Book Image

Refactoring TypeScript

By : James Hickey
Book Image

Refactoring TypeScript

By: James Hickey

Overview of this book

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.
Table of Contents (11 chapters)

Identification

Earlier in my career, I faced a sort of career crisis.

I was part of a team creating a large analytics platform in the automotive industry. The application had the typical enterprisey layered architecture you would expect (Business Layer, Data Access Layer, Core, and so on).

You would expect to find business logic – the really important business logic – embedded somewhere inside of the code for these layers. But usually, the really important business rules were coded in stored procedures.

Note

Stored procedures, in case you don't know, are like functions you create inside of a database that use SQL-like syntax to process data, store it, and so on.

I wondered what the purpose of the layers was. They didn't have any code except for passing data to stored procedures or showing data returned by one.

I started to learn more about object-oriented programming (OOP), industry best practices, SOLID, other programming paradigms, application...