5 Steps to Successfully Transition from JavaScript to TypeScript

Native JavaScript has advanced over the years, but it makes more sense to use TypeScript. Today, I present the advantages and steps I used to convert an open-source JavaScript project into manageable TypeScript.

Written by Jonathan "JD" Danylko • Last Updated: • Develop •

Screenshot of JavaScript code

Not that it's a big secret, but this year has really put a crimp in my plans (I know, right?).

However, in January and February, I was able to meet some personal goals with an open-source project and a new eBook for my subscribers.

The open-source project was a combination of vanilla JavaScript (client-side) and ASP.NET Core with Entity Framework (server-side). While I can't mention it yet, I'll talk more about the project in a future post.

I had a number of people look over the project and mention the JavaScript was all over the place. It needed to be more modular and manageable and not be a big ball of mud.

So even though I'm a little late to the party, I'm currently transitioning the project over to TypeScript.

I know there are a lot of JavaScript projects in GitHub and it's considered the Assembly Language of the web, but I've always been an object-oriented developer. I mean heck, when JavaScript was introduced back in 1995, I didn't even think it would last this long.

Flash-forward 25 years later and ECMAScript 2020 has arrived along with a new version of TypeScript 4.0. This keeps telling me (and proves) some JavaScript libraries are simply polyfills.

You can truly do everything using vanilla JavaScript.

Why Use TypeScript instead of JavaScript

1. It's essentially native JavaScript (with object-oriented concepts and enhancements)

Front-end developers understand TypeScript is a transpiled language which takes one source language (TypeScript) and writes it out to another source language (vanilla JavaScript).

Behind the scenes, TypeScript essentially becomes JavaScript.

2. It's application-scalable (modular)

With the ability to create separate classes, interfaces, and services, this innately makes your code more manageable when working with a large number of files.

It's even flexible enough to transpile down to the latest ECMAScript version through a configuration file. 

3. It's considered a popular language

Developers have spoken!

Not only are the latest JavaScript frameworks using TypeScript as their base language, it's also the most popular. Of course, that's based on the Stack overflow Developers Survey Results of 2020 stating TypeScript is the second most loved language. 

4. It's fully matured

Since TypeScript 4.0 just came out, it's been fully tested and now it's basically at the point where Microsoft is simply adding new features to the language. At version 4.0, I believe it can be considered a full-fledged Internet language.

Next Steps

When I finished setting up my dev environment, I took the plunge and started my conversion of JavaScript over to TypeScript.

With JavaScript, the project was bundled and minified down to a 13K library.

Not bad, but the project required additional components from Bootstrap to work. I'll come to that bridge when I cross it.

Things I Learned During the Conversion

When I started converting the code over, I realized there were some similarities in TypeScript associated with C#. Since Anders Hejlsberg created C#, it made sense that I would see similar programming concepts in TypeScript as I did in C#.

The process for converting the code is still a "work in progress," but during this conversion, I followed these steps to make it all TypeScript.

1. Create Classes and Interfaces

One of the first things I did was to build out a class hierarchy. There should be a trace of logical partitioning in your application.

Your classes lay the groundwork for communicating with each other (Think TRIM).

You now have the ability to write full-blown classes. I took advantage of that in the code.  

2 Create Modules

One class represents a single file. That's the standard.

Each module should contain one or more of these class files you created. Again, think like an onion and build on top of each layer. 

While you can place multiple classes inside of one file, it makes it harder to find later when you need to make adjustments to your classes or interfaces.

Also, shoving all classes in one file is not a suitable, long-term strategy.

3. Replace Events with Fat Arrow Syntax

Scope has always been a problem with JavaScript. Luckily, the fat arrow syntax solves this issue. This is a JavaScript feature, not a TypeScript feature. However, it made writing code for events so much easier in the long run.

I replaced every event with the "fat arrow" syntax (or Lambdas for you C# folks).

This eliminated the definition of a var self = this; statement and resulted in expected behavior when I wanted to know what this was.

4. Use Flexible DOM Manipulation

Since I was accessing DOM elements and developers could change the DOM elements to match their own design of classes, divs, and attributes, I decided to make the TypeScript classes accept DOM Selectors and use default selectors if they didn't pass them. 

Once the template was returned from the server, the library would map out the visible components on the screen and start the application.

5. Make the tool "DevOps-able"

When writing JavaScript, I didn't have to worry about transpiling the code. It just worked.

Yet, with introducing TypeScript to my project, I need to rethink my pipeline. It requires a little bit more care when building the project since I now have a second project in the pipeline.

Put the time in upfront to create a pipeline and you'll benefit from the dividends later.

Your DevOps pipeline should "build all the things and do all the stuff" required to deploy your software to a server or to a person's machine.

This is how you get single button deploys.

Conclusion

In this post, I looked at the advantages of moving a vanilla JavaScript library into TypeScript and introduced simple steps on how to transition it into TypeScript.

I know I'm forgetting something from this list, but after getting back into the project from January/February, I feel I'll be adding more to this list after chatting with others about their approach.

Also, I will be introducing the project soon...so stay tuned.

How has TypeScript helped you in projects? Have you used it with a JS framework? Did you have problems? Post your comments below and let's discuss.

Did you like this content? Show your support by buying me a coffee.

Buy me a coffee  Buy me a coffee
Picture of Jonathan "JD" Danylko

Jonathan Danylko is a web architect and entrepreneur who's been programming for over 25 years. He's developed websites for small, medium, and Fortune 500 companies since 1996.

He currently works at Insight Enterprises as an Principal Software Engineer Architect.

When asked what he likes to do in his spare time, he replies, "I like to write and I like to code. I also like to write about code."

comments powered by Disqus