A Javascript to Typescript Conversion Case Study

Evergreen Update ( 2022-01-35 ): After some time working with Typescript, I'm actually completely sold on its usefulness and value, which I certainly was not at the time of this writing. I was surprised that none of the usual explanations seemed really true, eg it didn't reduce the number of tests or types of test that I wrote at all. What it did do though is it greatly sped up my feedback loop: (1) Things that I used to run tests for (even subsecond tests) were instead immediately apparent right in the IDE. (2) Things that I used to read tests for (like method signatures and object shapes) were instead immediately apparent right in the IDE. I wouldn't say my quality improved, or that my teams can manage larger codebases; I'd just say that we're all faster now at doing the same things. Also, I'm pretty sure that if you're not doing heavy automated testing, none of this will ring true for you.

And now for the original post:


I'm part of a team that's just finishing up a Javascript-to-Typescript conversion of an approximately 60 K LOC (lines of code) Javascript web service (resulting in about 86 K LOC of Typescript), so I wanted to throw some anecdata at the conversation around the costs and benefits of static-typing.

A few caveats worth mentioning right away:

Alright, Let's do some math

In calendar time the conversion took about a year, but I estimate the actual developer effort was about 6 engineer-months. ++

85,000 LOC over 6 developer-months is around 14K LOC per month, or 475 LOC per day. From a naive line-by-line viewpoint that rate could seem slow, but there were many things that are easy in Javascript that are just infeasible in Typescript and had to be reworked entirely. +++ We also spent a chunk of time improving performance of compilation.

While I'm giving LOC stats, it's going to be worth noting that this codebase additionally has ~100K LOC worth of tests (that we left in Javascript), giving us a little over 80% coverage.

The Importance of our Test Suite

During the conversion, we found surprisingly few defects in the existing code. It was common for a single developer to be working on conversion full time and not find any defects at all in a week.

I probably converted over 10% of the code myself and never personally ran up against any defect that was user-facing. We ultimately did find a handful of user-facing defects in the pre-conversion code though (maybe 5?) and most had to do with the input validation not being strict enough. Typescript was useful for helping us find those cases in a way that tests probably wouldn't be (It's rare for our automated tests to be testing bad input extensively).

The conversion process did in fact introduce test breakages quite regularly though (that would have been bugs). We used the "noImplicitAny" compiler flag to help us enforce using types everywhere. At the file-level, this is an all-or-nothing conversion strategy, so on a large or complicated file, conversion could take hours before you could run the tests again, and continually I was finding that even with a successful build, the tests would fail in dozens of different unexpected ways, all indicating new defects.

Let me repeat that for emphasis: the act of changing existing working code to add types introduced defects that only the tests caught. This probably happened in more than half the files that I converted.

Conversely, what we've accomplished with tests (and no type-checking) on this codebase over the last 5 years is pretty mind-boggling to me. We converted:

And throughout each of these conversions, we deployed multiple times per day. None of the conversions were "big bang".

What I like (because I like Typescript):

Well I'm using VS Code now, instead of just vim, as one does when switching to Typescript. It's more sluggish of course, but it comes with better in-editor support for Typescript and that means that:

That last one is really key for me and ties into a larger improvement than just those in the IDE. Typescript encourages us toward standardizing object "shapes". With Typescript interfaces, we can say things like "Alright a 'user' will always look like this. It will always have these fields." If some other representation has less fields, or more fields, and we really need that, we'll have to face the pressure of adding an additional type. That's pretty powerful and I really appreciate it. Before, just reading application code, I'd have to consult tests to see exactly what shapes and interfaces were supported or returned and there was no pressure to simplify and consolidate on just one shape. That hurts learnability and maintainability.

There are of course a bunch of places where defining types is a productivity drag. It's certainly more code to write and more code to read, and for certain types of work, it can amount to just noise. When writing new code though, I do really appreciate how easily I can call on file-external classes/methods/functions/properties without having to jump around from file-to-file and figure out the proper way to do that.

Static Types and Quality

It's pretty clear to me that we're not really catching many more defects with Typescript compared to the effort that we've put into it.

We're catching defects faster though with faster feedback, right? Well I don't know about that either. We definitely are for certain classes of bugs. If a function that adds 1 and 1 together returns the string "2", that will get caught much faster. There are definitely lots of typos and misspellings that are caught more quickly too. I'm enjoying that immensely and it's a real productivity boost.

It's not free though. Compile time is around 40 seconds for me (and worse for others). So if I want to actually test runtime behaviour I'd say I'm now at a disadvantage. Firing the server up and manually testing locally now takes almost a minute when it used to take less than 10 seconds. Even with incremental compilation and a warmed cache, there’s a ~10 second compile time, which makes doing TDD (my usual way of writing code) a lot slower because of the slower feedback cycle. So, many types of defects are faster to detect, but many types are also slower.++++

But I don't have to write as many tests, right? I have no idea why anyone would think static-typing replaces certain kinds of tests. I was never testing types. Does anyone ever do that? I still write exactly the same number and types of tests. Testing hasn't changed a bit.

If it sounds like you're working in a scenario that is close to ours (a multi-year SaaS product), my recommendation is that if you have to choose between static-typing and tests, choose tests. To forego tests in this type of codebase is not only lazy but lazy in a way that actually leads to more work. It's hard to watch developers avoid the tiny upfront investment of tests when I can see what it's given us over the lifetime of this codebase.

You don't have to choose either, so if you're sure you want a statically-typed codebase, feel free to do that too. Typescript is not going to be a silver bullet though. The if-it-compiles-it-works approach is a recipe for long-term pain.

Additionally, if you don't have tests and you want to do a conversion from Javascript to Typescript on a large codebase, I'm fairly certain that you will go much slower than we did, and you will have a tonne of bugs. Of course our conversion is just one data-point, so your mileage may vary.


endnotes
+ ...so it's not strictly true that 60 K LOC of Javascript converts to 85 K LOC of Typescript. I'm sure there are better sources of information for how many LOC conversion adds.
++ I'm pretty confident in that estimate because around 80% of the conversion was done by one engineer fully tasked with the effort.
+++ eg Most middleware stacks in node.js web frameworks rely heavily on monkey-patching which does not easily translate to Typescript. Also we were doing a bunch of sequential mutations of objects in Javascript that are really tedious to simply translate to Typescript because of the necessary proliferation of types.
++++ I can't really totally blame Typescript for this. Our Typescript-to-JsonSchema converter is included in this compile stage, and it takes a significant chunk of the time. We really want to ensure that type-safety holds at run-time as well though. Additionally, I do think we should be relying on incremental compilation (with a watcher) more. It's possible with more effort we can fix most of the delay.



Tags: static typing, javascript, typescript, refactoring

← Back home