What is monoculture?
Even though there seem to be different approaches when it comes to developing web applications, companies are still focused on the main fundamental idea of shipping a web application to production while accounting for the scope of project, cost and time to deliver the scope.
Let’s look at the above triangle.
When you increase the scope of a project, you either will need to increase the cost or project will not hit the deadline as it’ll take more time.
Thanks to agile development, software development teams are familiar with this fact.
But let’s look at a different perspective outside of scope, cost and time.
The tech giants like Google, FB, AMZN, NFLX have a strong focus on application performance. Large companies have a huge amount of concurrent users so they have to navigate scalability and performance issues regularly.
But they also have lots of cash in the bank and they can hire more developers to fix the app’s performance. So DX is not as important for them.
But for the rest of us, it’s cost-effective to add a bigger server than add an additional head-count as a developer.
User Experience (UX) is another one that’s critical.
Companies love to evangelize their way of doing a thing — whether it’s design or development.
98% of the time, that’s for recruitment purposes. But it also leads to developers drinking the cool-aid and they go — “React/Vue.JS/Angular etc is the right way to go.”
The problem is that most of your applications don’t have to scale to serve 1M+ concurrent users.
For that kind of setup, there are different tradeoffs relevant to what big tech companies have.
So in order to address the challenge of monoculture, how about we:
- Optimize for DX first i.e. if there’s a choice between choosing something for increasing developer productivity versus optimizing for the server, choosing developer productivity could have greater long-term gains as it directly contributes to developers being happy and willing to stick around as they enjoy working on the tech stack.
Combining this with a framework that is built-in with good UX at its core, companies can get both, DX and UX without having to worry much about scalability from the get-go as there’s always one extra node you can add to your cluster.
Framework of the month — Angular, React, Vue, Flutter, etc.
Architecture of the year — SOA, Serverless, Microservices, etc.
As engineers, we like to use bleeding-edge technology. It makes us feel powerful and in control of keeping up with time.
But companies prefer stability.
When Google builds an application, it explicitly plans to deprecate the stack at the end of 5 years. So when the time comes, they’re not refactoring or redesigning their app and prefer to start from scratch.
Another thing you end up with due to Hype-Cycle is the mashup of best practices.
You pick the best template engine, best REST API Framework, best CSS pre-processor and then you integrate those because they’re all best practice. And we all know how complicated web development can become due to this mindset.
So what’s the solution?
Using an integrated solution.
When you get the above open-source solution from a single vendor, you mitigate the risk of not having stability or incurring extra costs due to mash-up of different tech stack across your engineering team.
An additional advantage of choosing a vendor backed open-source solution is that when things break (and trust me it will) and it’s a critical situation where your CIO is up all night and having to scream at people on the phone — you can reach out to experts who’ve built the technology you’re using and get it fixed with an SLA versus letting your developers post on SOF and hope a community member comes and saves the day.
Why?
Because it’s doing something totally different from what it was designed for.
Sir Charles Anthony Richard Hoare is a British computer scientist who calls his invention of the null reference back in 1965 as a billion-dollar mistake.
But programming languages started to copy it as well and the fact that JS doesn’t have 1 kind of null references but 2 different ones, could JS be a 2b mistake?
What’s happening is that — JS isn’t used for what it was designed for.
Back in 1995, 1996 — when both Java and JS were relased by Sun Microsystems and Netscape respectively, the plan in collaboration was that Jave would be universal app for building complex things but there’ll be JS for building smaller scripting kind of things.
Today, Java has become write once, read everywhere. But they’re also using JS as a virtual machine similar to Java byte code.
They write an app in other languages and then at compile time it’s translated into JS. One of the biggest reasons for this solution is to get static type-safety.
Why have static type-safe code from your client to server-side logic?
Type safety is business-critical when you’re building a huge Enterprise application with lots of developers coming and leaving but you want the code to be optimized for end-users.
So what’s the solution?
The 4th challenge is around Client-Server Communication.
Yes, project managers face their own set of communication challenges during the SDLC.
But an even more critical challenge is how the client and server communicate with each other.
The big challenge is that we have a process boundary. We have different things that are separate with latency between them.
We have to do things in a synchronous way. We have to do an optimistic update which comes with its own set of challenges you have to solve.
Latency makes it even longer. If you have infinite latency and you have an offline situation, you have to deal with problems of how to keep things in sync.
How do you ensure when users return online, things are put into the database and conflicts are resolved?
It also causes a language barrier.
What you typically have is that you have Java or C# on the server and on the client, you have JS.
There’s the alternative of using NodeJS on the server or GWT on the client that gives you Java everywhere.
Different programming languages come with separate code bases so there’s the difficulty of having shared validation rules or shared constants.
So you end up duplicating things or doing it in a not so optimal way.
When it comes to the web, the question for communication is — do we use REST or GraphQL?
Both of these are for the use-case when you have front-end team doing FE and back-end team doing BE and the interaction between them is the communication layer.
REST requires you to define what the client and the server will do.
GraphQL gives slightly more power to FE teams but you still have a hard boundary between the client and the server
Communication is difficult enough without having to add this encapsulation layer.
So what’s the solution?
Transparent communication from encapsulation between front-end and back-end.
What if the front-end team is also doing server-side part of the communication which has a thin layer that talks to the business logic.
In doing this way, you separate 2 complex things — encapsulation and overall communication challenge and helps to do things in a smoother way.
By tightly coupling your FE and BE in your client-server communication layer, it lets you avoid all those problems like not being able to share constants and shared validation rules, etc.
In theory, you should just do mobile-first and everything will be awesome.
Why?
In many cases, you still need to do native apps. Because mobile-first web app won’t be good enough
What you end with is multiple clients with different codebases —
3 separate code bases (i.e. web, iOS, Android) also add up the development costs.
What you want is a single code base so that you change things once when there’s a business requirement or when you have to fix bugs.
Another challenge with mobile-first app development is how to deal with offline functionalities.
In addition to the synchronization of data problem, you have the additional problem of how to cache static asset so that your app can be truly offline.
So what’s the solution?
Progressive Web Applications (PWA).
Maybe it’s still a buzzword today.
But the reason it will stick is that it’s the 3rd iteration by Google.
Based on Google’s record, the 1st and 2nd time they build something, it’s not really good because they’re themselves learning what to keep in mind but the 3rd time is often a home run.
Google’s 1st iteration with mobile app development was the same as everybody else does i.e. separate web, ios, and Android clients.
Their 2nd iteration was — do as much as possible in Java. Android clients natively running java and web client using GWT to compile Java into JS.
Google has a similar solution for compiling Java into iOS clients. Much of the client-side logic can be implemented in the same codebase. But they’d be doing UI in respective native tech for each stack.
Google’s 3rd iteration is PWA.
The Big Idea
— Turn the problem upside down. What if we don’t need a native client by making the web browser strong that makes it easier to deal with caching of the static asset.
So there you have it.
The above are the 5 challenges based on our experience here at Vaadin helping companies with their business web application development needs and how we’re navigating it.
Whether you’re a web app developer, architect, or engineering leader responsible for ensuring the business goals are met when selecting the tech stack for your team, what is your #1 single biggest challenge when it comes to building business web applications based on your current team dynamics? Share your thoughts below in comments.