The cost of technology β
INFO
Each tool or technology comes with a cost⦠of maintenance.
I have read this, experienced it. Which led to ask myself: how avoidable is that? At what cost? And what is "technology" anyway? I investigated.
What is technology? β
Language β
Most languages have major version releases: Python, Go (v2 will come someday π₯±), PHP, β¦
Yet the web platform β HTML, CSS & JS β is designed to be breaking-change-free. A weakness for some, a strength for me.
It also has a big community of developers, re-assuring me that I can find fairly simply people to work with and at decent wages or rates. Thatβs also something to consider when building a product and a company.
Databases β
A DB can be narrowed down to 2 operations: read and write. Every DB allows to read & write.
To me their main differentiator is on how data can be accessed (read): indexation.
You have boring technology like SQL or key-value stores like Redis. Tested by time, large communities and good support.
And you have more esoteric technologies like MongoDB/DynamoDB, BlockChain or ElasticSearch/Algolia in their times. Requires to learn new paradigms, potentially only with professional support.
NB: I like learning new stuff, but you know what I like better? Learning stuff I can re-use.
Bottom line: Data is essential to any project, choose wisely. But more importantly, use some kind of "data store" or "repository", whatever you call it as long as it exists.
You can find samples in any of the projects in this series, for instance here.
Deployment strategy / Hosting β
Thankfully we have Docker now, therefore it has become uncommon to upgrade personally OS versions. Although it may still happen, I will not dig into this.
Whether you opt for microservices, monolith, VPS, I couldnβt care less.
Side note: when it comes to JS/TS, we even get blessed π by new runtimes joining the dance πΊ, after NodeJS came Bun & Deno, and I suspect more are coming. This is some shift from thinking "My code will run on NodeJS" to "My code will run" π .
Frameworks β
To me, one big pace-killer is β drum roll π₯ β library migrations. Either frameworks releasing major upgrades, either rewrites from framework A to framework B because framework A is unmaintained β or has been for years, hello sails.js π β or has lost traction β hello Backbone, Ember, β¦ π.
Letβs start with 2 definitions β yes, they come from me π€:
Web Platform: A technology which decided to never introduce breaking changes.
Web Framework: A technology which introduces breaking changes ~ once every 2 to 5 years.
If I rephrase that:
Letβs say you are working at a company whose first project was bootstrapped 3 or 5 years ago. What are the chances that you have migrated β or need to migrate β one of your frameworks?
To me itβs near 100%. In that way, the JavaScript world is particularly contradictory:
- The web platform decided at its very beginning it would never introduce breaking changes. Websites from the 2000s are still up & running!
Although it may have some drawbacks (like keepingnull
andundefined
π), this philosophy drove trust, thus wide adoption. - The web frameworks, on the contrary, have introduced countless breaking changes, inducing migrations and impacted teams on their way to delivering features, therefore driving less revenue. Either that or your framework is too newbie π.
Because the web platform is so stable and gaining tons of features, I want to bet on it.
The biggest gamble I am making nowadays is using TypeScript, considering it is on the verge of becoming an actual web standard.