What is Serverless (in 2 minutes)

Felipe Bohorquez
3 min readMay 20, 2020

Serverless allows you to run and deploy apps without having to worry about managing server infrastructure

Probably most of us have heard about serverless computing, and probably you’ve asked yourself (like me) if it's a good technology to learn. Here I’m sharing some high level points I learned after seeing a presentation about it at Byteconf React.

So, What is Serverless?

Serverless allows you to run and deploy apps without having to worry about managing server infrastructure. Examples include AWS Lambda, MongoDB Stitch and Microsoft Azure. Developers then worry about building the business logic only.

So the name serverless can be misleading because there are actually servers, it’s just serverless for us, the developers.

Why serverless is popular right now:

- No managing infrastructure, nor provisioning.

- No capacity planning.

- No patching.

- Not worrying about scaling.

- Can be cheaper. Not running 24/7 only when running serverless functions.

But what’s the catch with serverless?

- Servers need to warm up

- If you scale up pretty quickly you need to configure this with cloud provider to mitigate this.

- Deployment pipeline (DevOps) still needs to happen.

- Serverless functions means state is managed externally.

When to use serverless

- If you had a static site that needs occasional server updates. No need for 24/7 servers.

- Variable traffic level, and augment existing systems to handle additional load.

When to avoid serverless

- If you don’t want to rely on third party vendor.

- As app grows it might get more complicated your serverless management, so there’s an additional learning curve.

Some considerations when using serverless computing

- Avoid lock-in with a single vendor.

- Ensure that it remains easy to build.

Quick Example Connecting React App to Serverless Provider

Depending on the provider, you might have access to an SDK that you can easily include on your React app.

In the example below with MongoDB Stitch you pass `MongoDB Stitch ID` on where is in the cloud and kind of works like Redux where you pass as props to get data from server components.

Then you can use MongoDB Queries (MQL) to get data and update state from it.

Future of serverless

- Infrastructure will continue to be abstracted by cloud providers.

- More serverless options will pop up, so many more to chose form.

- Serverless will get cheaper and faster in the future.

--

--