Open In App

Why Serverless Apps?

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

Everyone is trying to make their web applications faster, more scalable, and easier to maintain. There’s a huge push moving us more and more to the cloud for our hosting meaning there are fewer shops that have the cold server closest onsite. With everything moving towards the cloud, we aren’t always sure what OS our “server” is using. So we might as well take it a step further and get rid of the server altogether. 
That’s what serverless apps are trying to do. The concept has been around for a few years, but it’s starting to pick up speed. Companies are starting to experiment with serverless applications because of all the benefits they provide, but just as many companies are hesitating because of the potential issues. By the time you finish reading this, you should understand what the heck a serverless app is, the benefits and potential issues, and how to architect one. 

What is the meaning of Serverless?

The term “serverless” is weird because you know you need a server to host anything online. What’s really happening is kind of a distributed server thing. So you’ll have the code for your web app (HTML, CSS, JS) hosted somewhere and then all of your back-end stuff will be taken care of elsewhere. You’ll make API calls to other services and use tools like Azure Functions or AWS Lambda to handle the data. 
You can think of a serverless app as a front-end that calls 3rd party APIs when an event happens. That means nothing is sitting there waiting for an event to happen or a call to come through. Unlike with normal web apps, you don’t have to handle the back-end at all. Everything happens dynamically which frees up a lot of resources for your application. 

Pros/Cons of Serverless Architectures: It’s hard to describe serverless architecture without talking about its pros and cons. There are just as many reasons that serverless apps are starting to become more popular as there are reasons for keeping monolithic applications. Here are a few of the pros and cons of the serverless app. 

Pros 

  • You don’t have to worry about your entire back-end crashing because of one bug.
  • No more big deploys because your entire back-end is distributed.
  • You don’t have to know a specific back-end language because you don’t have to write any code.
  • Incredibly fast to set up.
  • Scalable from the start because you don’t have to worry about how many requests are hitting your server.

Cons  

  • You give up a lot of control over how the code is implemented and how the original data is processed.
  • User experience could suffer if the app is architected properly.
  • There are more potential security risks since you are depending on third-parties.
  • Testing locally can be difficult.
  • A lot of discipline is required to keep the app from sprawling out of control.

You have to be sure that your app really needs to be serverless or not. Not every web app needs to be serverless because monoliths and cloud-hosting provide their own sets of pros and cons. It’s not a trivial task to switch your app over to a serverless architecture. It’s not something you can gradually do either. Once you commit, you have to be all in. 
Setting up a serverless app isn’t difficult, it’s all the thought and design that happens before you start building. When you are sure you want to go forward with a serverless web app, here’s a simple architecture you can follow. One of the most interesting things about serverless apps is the absence of a back-end. That means developers only have to focus on the front-end and the architecture for the APIs it calls.  

How to Architect a Serverless App?

The main thing you need to understand is how to set up a serverless app. The architecture is simple, but that’s what makes it tricky. You only need five main components for a serverless app to work: a web server for your front-end, some lambda functions, a security token service, some user authentication, and a database. 
It really is that simple. You just “plugin” the APIs you need to use and you use them when the user triggers an event. There are some libraries for Node you can use to make serverless apps, like Claudia.js or Apex to kick-start your apps. As far as the lambdas you use, the most popular options are AWS Lambda and Azure Functions. 

One scenario you would consider using a serverless app is if you know there will be an increasing number of users. One of the strongest aspects of the serverless architecture is its ability to scale. A couple of other scenarios include doing live broadcasting and processing IoT data, like those home monitoring systems.
 


Last Updated : 10 Sep, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads