Archive

The Dulin Report

Browsable archive from the WordPress export.

Results (64)

Strategic activity mapping for software architects May 25, 2025 On the role of Distinguished Engineer and CTO Mindset Apr 27, 2025 The future is bright Mar 30, 2025 2024 Reflections Dec 31, 2024 My giant follows me wherever I go Sep 20, 2024 Are developer jobs truly in decline? Jun 29, 2024 Some thoughts on recent RTO announcements Jun 22, 2023 One size does not fit all: neither cloud nor on-prem Apr 10, 2023 Should today’s developers worry about AI code generators taking their jobs? Dec 11, 2022 Working from home works as well as any distributed team Nov 25, 2022 Why you should question the “database per service” pattern Oct 5, 2022 Good developers can pick up new programming languages Jun 3, 2022 There is no such thing as one grand unified full-stack programming language May 27, 2022 Peloton could monetize these ideas if they only listen May 15, 2022 Good idea fairy strikes when you least expect it May 2, 2022 Best practices for building a microservice architecture Apr 25, 2022 TypeScript is a productivity problem in and of itself Apr 20, 2022 In most cases, there is no need for NoSQL Apr 18, 2022 A year of COVID taught us all how to work remotely Feb 10, 2021 Making the best of remote work - Coronavirus blues Mar 16, 2020 TDWI 2019: Architecting Modern Big Data API Ecosystems May 30, 2019 Using Markov Chain Generator to create Donald Trump's state of union speech Jan 20, 2019 The religion of JavaScript Nov 26, 2018 Let’s talk cloud neutrality Sep 17, 2018 Fixing the Information Marketplace Aug 26, 2018 What does a Chief Software Architect do? Jun 23, 2018 I downloaded my Facebook data. Nothing there surprised me. Apr 14, 2018 Nobody wants your app Aug 2, 2017 Node.js is a perfect enterprise application platform Jul 30, 2017 Design patterns in TypeScript: Chain of Responsibility Jul 22, 2017 Singletons in TypeScript Jul 16, 2017 Rather than innovating Walmart bullies their tech vendors to leave AWS Jun 27, 2017 Architecting API ecosystems: my interview with Anthony Brovchenko of R. Culturi Jun 5, 2017 TDWI 2017, Chicago, IL: Architecting Modern Big Data API Ecosystems May 30, 2017 Collaborative work in the cloud: what I learned teaching my daughter how to code Dec 10, 2016 Don't trust your cloud service until you've read the terms Sep 27, 2016 In search for the mythical neutrality among top-tier public cloud providers Jun 18, 2016 What can we learn from the last week's salesforce.com outage ? May 15, 2016 Why it makes perfect sense for Dropbox to leave AWS May 7, 2016 JavaScript as the language of the cloud Feb 20, 2016 OAuth 2.0: the protocol at the center of the universe Jan 1, 2016 Our civilization has a single point of failure Dec 16, 2015 IT departments must transform in the face of the cloud revolution Nov 9, 2015 What Every College Computer Science Freshman Should Know Aug 14, 2015 Ten Questions to Consider Before Choosing Cassandra Aug 8, 2015 On Maintaining Personal Brand as a Software Engineer Aug 2, 2015 The Three Myths About JavaScript Simplicity Jul 10, 2015 Book Review: "Shop Class As Soulcraft" By Matthew B. Crawford Jul 5, 2015 Attracting STEM Graduates to Traditional Enterprise IT Jul 4, 2015 Your IT Department's Kodak Moment Jun 17, 2015 The longer the chain of responsibility the less likely there is anyone in the hierarchy who can actually accept it Jun 7, 2015 Big Data is not all about Hadoop May 30, 2015 Smart IT Departments Own Their Business API and Take Ownership of Data Governance May 13, 2015 The Clarkson School Class of 2015 Commencement speech May 5, 2015 Building a Supercomputer in AWS: Is it even worth it ? Apr 13, 2015 Ordered Sets and Logs in Cassandra vs SQL Apr 8, 2015 What can Evernote Teach Us About Enterprise App Architecture Apr 2, 2015 Microsoft and Apple Have Everything to Lose if Chromebooks Succeed Mar 31, 2015 Software Engineering and Domain Area Expertise Nov 7, 2014 Wall St. wakes up to underinvestment in OMS Aug 21, 2014 Software Engineers Are Not Doctors Aug 3, 2014 Cassandra: Lessons Learned Jun 6, 2014 Java, Linux and UNIX: How much things have progressed Dec 7, 2010 Eminence Grise: A trusted advisor May 13, 2009

TypeScript is a productivity problem in and of itself

April 20, 2022

The real problem is the choice to use Node.js for a large full-stack project in the first place



I have a mixed relationship with JavaScript. It is crucial for web development, and there is no way around it. One could use it on the backend with Node.js as well. As a result, it is possible to build a full-stack web application from start to finish in the same language. I get the appeal of it.



I could even argue that Node.js is a convenient platform for serverless architectures. For example, backend logic implemented in the form of multiple AWS Lambda functions is a good candidate for JavaScript.



However, complex large backend applications that involve many developers require additional capabilities. TypeScript adds static analysis and strong typing capabilities that JavaScript alone doesn’t have.



Herein lies the problem — The TypeScript compiler itself is written in JavaScript. It has a rich typing system, performs static checking, and transpiles TypeScript to JavaScript. Yet, it is built upon a slow single-threaded platform not meant for CPU-intensive tasks like a compilation. 



Anything more extensive or complex than a few thousand lines of code becomes excruciatingly slow to compile by the TypeScript compiler. A large project worked upon by a large development team will soon discover that the TypeScript compiler itself is a massive productivity bottleneck.



I concede that I am not an expert on frontend applications, and I admit that both JavaScript and TypeScript might be the only viable options for any form of cross-platform frontend development. My focus is on complex business logic backends for enterprise applications.



A backend project involving a dozen Node modules and 20000 lines can take minutes to compile using TypeScript. If you add npm install to the mix, you will now be measuring the total time to produce deployable assets in tens of minutes. I dare you to compare that to a similarly sized project in Golang or even Java, which takes seconds to compile.



A search of StackOverflow and Google for ideas on how to speed up TypeScript compilation reveals quite a bit of MacGyvering going on in the developer community. All TypeScript compiler performance tuning techniques appear to revolve around avoiding or disabling certain parts of TypeScript.



People jump through many hoops to make TypeScript perform in 2022 on an M1 processor as the Pascal compiler did on a 386 in 1992. One of the first things that people do is disable type checking. Frontend developers need to see the results of their work, so for faster turnaround in their local IDEs, they demote type checking to a secondary background process.



There are even alternate TypeScript compilers, like swc, that don’t bother with type checking. If you are resorting to avoiding certain parts of the language, and disabling the type checking aspect of TypeScript, dare I ask why you picked TypeScript in the first place for your project?



Local development, however, is only one part of the development lifecycle. Surely, in their local IDE, the developer can rely on syntax and error highlighting to a certain extent. But once the code gets to a CICD pipeline such as Jenkins, it needs to be correctly compiled and statically analyzed, which can take dozens of minutes on a non-trivial project. Relying exclusively on their IDEs to highlight errors, developers frequently break builds and waste everyone’s time.



We need solutions.




Don’t use Node, JavaScript, and TypeScript for backends




It is interesting how Microsoft’s documentation on improving TypeScript performance states upfront that one should consider the limitations of TypeScript for large projects earlier rather than later:




There are easy ways to configure TypeScript to ensure faster compilations and editing experiences. The earlier that these practices can be adopted, the better. Beyond best-practices, there are some common techniques for investigating slow compilations/editing experiences, some common fixes, and some common ways of helping the TypeScript team investigate the issues as a last resort.




I’ll give you an easy way to make backend compilations faster. The earlier you adopt my advice, the better.



My advice: don’t use Node, JavaScript, and TypeScript for backends. I don’t buy the argument that somehow same developers can be used to build the full stack. Full-stack development in Node works for simple projects done by teams of one or two people. 



If you are starting a new large project and are thinking of what platform to use for the backend, I would recommend looking into Go. Though, if you want the productivity benefits of an interpreted language and a degree of strong typing, why not Python?



If you made a wise decision not to use Node, JavaScript, or TypeScript on the backend by choosing a proper compiled language, you might stop reading right here. We can be friends for life.




Monoliths are an anti-pattern for both Node and TypeScript




If you are still reading this post, you found yourself stuck using Node and TypeScript. Perhaps like me, you have a hard time saying no to bad ideas thinking that maybe it’s politically expedient to avoid a confrontation. Trust me, I am working on that personal flaw. Sometimes it is better to confront bad ideas upfront than deal with them later.



If you do decide to stick with Node and TypeScript for backend logic, I believe you will pay for your mistake later on. You can make it less painful for yourself and your team.



The biggest problem with TypeScript is large codebases. The performance of the TypeScript compiler declines non-linearly, with each line of code added beyond maybe 5000 lines.



Large codebases are a result of monolithic architecture. We know monoliths are a terrible idea, and the TypeScript compiler makes it abundantly clear just how bad. Between the single-threaded nature of the Node event loop and the non-scalable TypeScript compiler, it is unnatural to build large monolithic backends using those tools. 



Since monoliths, in general, are a terrible idea, it is better to think in terms of micro-services and modules, each of which should be no larger than 5000, maybe 10000, lines of code. As the application grows, it is worthwhile to periodically analyze the code commit hotspots and identify which microservices are growing exceedingly large.



If you prefer not to rely on the number of lines of code, I understand. Lines of code don’t reflect complexity. Then try using the time it takes to compile as a rule - if your project takes more than, say, 10 seconds to compile, it means it is getting too large for TypeScript. 



Setting things up for optimal microservice performance is a topic for another discussion. I will cover it in a later post. 




Final thoughts




I firmly believe that Node should not be used for complex backends. TypeScript helps, but it is lipstick on a pig. If you get stuck with Node and TypeScript on the backend, you need to avoid creating monolithic architectures.