Skip to content
← Back to Blog

Wednesday, May 10th 2023

What does Vercel do?

"Technically" newsletter founder Justin Gage explains how Vercel makes building web applications as easy as possible, powered by the frontend cloud.

Posted by

Avatar for gagejustins

Justin Gage

Founder, Technically

Vercel builds a frontend-as-a-service product—they make it easy for engineers to deploy and run the user facing parts of their applications.

  • Applications have two parts: the frontend and the backend (have I mentioned this before???)
  • The frontend is usually deployed with the backend on a single server (or set of servers), which means infrastructure to set up and manage
  • Vercel lets teams deploy their frontend stupidly easily, separately from their backend
  • Deploying with Vercel gives you nice features like deploy previews, functions as a service, analytics, and more
  • Beyond just the frontend, Vercel has been adding cloud-like features like storage and databases

While how you deployed your frontend was nobody’s business a few years ago, tools like Vercel are now (maybe?) the standard for how teams get their frontends up on the web. The Technically website is even built with Vercel!

You may notice unusual enthusiasm for this product from me in this post, but it is not sponsored—I’ve just been using the product for years and really like it.

See for yourself

Get a step-by-step walkthrough of Vercel.

Take the Tour

What does deploying mean? Why do I need to do it with my frontend?

The frontend of your application is the part that your users see. But it’s actually a bit more than that. Your typical frontend codebase does a bunch of things:

  • Builds the visual element of what you’re seeing on a web page, with HTML and CSS
  • Handles interactivity and animations via JavaScript
  • Makes calls to internal and external APIs to fill pages with data (like a user profile page)

Frontends are usually organized as a series of files representing which pages exist, what their structure is, and accompanying JavaScript for handling interactivity, logic, and API calls. We’ve used the analogy of the front of the house (yes, chef) vs. the back of the house, and this sort of works. The FOH is the customer’s interface to the back, making sure orders get to the kitchen, the right food gets back to the customer, etc. 

Deeper look

Some engineering teams stick to what’s called a monorepo, where all of the application code—the entire frontend and backend—are all in one giant repository, i.e. one master folder. Others have separate repositories for the frontend and backend, and others yet several repositories for different parts of the backend. Which setup teams choose depend on their priorities and how complex their application is.  

Deeper look

However you want to understand the frontend, the important takeaway here is that the frontend code needs to sit somewhere. Developers build the frontend on their laptop and need to put it up on a server somewhere so users on the web can access it. So how do they do that? There are a few options:

  1. Put it up on a dedicated server, separate from your backend
  2. Put it up on the same server as your backend
  3. Put it up (with or without your backend) on a PaaS like Heroku, Railway, Render, etc.

All of these options require a good deal of setup and configuration. The basic requirements include setting up authentication / networking to your local setup and (possibly) the backend server(s), caching your frontend across the world so it’s close to your users, handling DNS so you can have a nice URL to access, and plenty of fun other stuff. I’m not trying to scare you here with terms or concepts you don’t know, there’s just a lot to do.

Vercel, and products like it, are specifically built for deploying frontends and making all of the above work as easy as possible.

The basic Vercel product

Vercel makes it as easy as possible to deploy and use your frontend. Like any software project, I have my frontend code for technically.dev in a GitHub repository. All I need to do to get it up and running on the web is create a Vercel account, give it permissions to my technically.dev repository, and configure the domain name. Boom, your site is live:

Blog Graphic-2.5.png
Blog Graphic-2.5-1.png

Behind the scenes, Vercel has taken that code of mine, put it on servers around the world, put a URL in front of it, and optimized it to run and load fast. But this is just the start!

If I want to make changes to my website, all I need to do is push those changes to my GitHub repo, and Vercel automatically redeploys the site and puts the new code on the server. You get this nice dashboard for each site you have deployed that gives you information on status, recent deploys, and what domains it’s sitting at.  

Blog Graphic-3.png
Blog Graphic-3-1.png

If anything went wrong during your build and the code isn’t working on the server, you can look at the server logs to debug (something you’d normally need to do in your terminal):

Blog Graphic-4.png
Blog Graphic-4 (1).png

Another really nice feature is deploy previews. When you open a new pull request with changes to your frontend codebase that you’re considering merging / applying, Vercel automatically tries to deploy that code on a new server so you can see how it looks before agreeing to apply those changes. I’m considering a name change for Technically (not really) so I’ve opened up a PR to change the name on the site:

Blog Graphic-1-1.png
Blog Graphic-1.png

Vercel automatically pre-deployed the new code and created a deploy preview that I can access on the web. Let’s take a look:

Blog Graphic-4-3.png
Blog Graphic-4-2.png

Alright this looks silly we should not do this. I knew that already since I developed this locally on my laptop, but this deploy preview made it simple to see on web and confirm. The same holds true for my teammates, who can easily see what this looks like live instead of me sending them screenshots. If I did merge this PR though, Vercel would then take the new code and put it on the production server. This deploy preview feature makes testing new changes incredibly easy and requires basically no configuration whatsoever.

Confusion alert

If your code is hosted on the GitHub website, why isn’t it “deployed” there? Why can’t my users just access the code on GitHub directly? The answer is complicated, but the basic gist is just that this isn’t what GitHub is set up to do. You’re missing domain handling, exposing the server externally, preview functionality, and all the other nice things Vercel and others provide. There is a seldom talked about feature called GitHub Pages where you can sort of do this, but it’s not feature-rich enough for a real application.

Confusion alert

Finally, by default, Vercel assigns a random URL to your project so you can access it on the web right away. But you can easily add your own custom domains, like I’ve done here with technically.dev. Fun fact though, you can access an old version of the site at https://technically-app.vercel.app/

The Next.js situation

Perhaps the most interesting part of Vercel is that they’re the creators and maintainers of Next.js, one of the most popular web frameworks on the planet right now for React. Next.js is open source and free, and probably a lot more popular than the strictly commercial Vercel product.

A web framework is a set of little facilities that make it easier to build a web server – especially frontends – without having to write a ton of custom code. The details are beyond the scope of this post, but suffice it to say that basically every modern web application is using some sort of web framework. A few popular ones you may have heard of: 

As React has gotten a lot more popular, Next.js popped up as a React-specific web framework (others are Create React App, Gatsby, etc.).

Because Vercel is the owner / maintainer of Next.js, they’re able to natively integrate it into their commercial frontend-as-a-service product in a few interesting ways. Along with some nifty performance optimizations, every function in the “api” folder automatically gets deployed as a serverless function in Vercel, which is at least one way to build an easy backend.

Vercel as a frontend cloud

Beyond the frontend-as-a-service offering, Vercel has consistently released supporting features to make it a legitimate place to build your entire application:

  • Edge Functions: run server side / backend code serverlessly to handle things like authentication, experimentation, etc. 
  • Analytics: statistics and dashboards on your site’s performance and accessibility
  • CLI / API: interact programmatically with Vercel to do things like run deployments, run performance checks, etc.

The Edge Function stuff is probably the most important to keep an eye on. Though Serverless and functions as a service aren’t a new concept, Vercel’s implementation is interesting. While your functions on a service like AWS Lambda are typically deployed in one place (a single geographical region), Vercel has those functions running across the globe in multiple locales. According to their team, it’s both faster and cheaper than other providers.

Today, significant applications are still usually deployed manually on servers somewhere (even if via PaaS)—serverless is picking up steam but still not for core backend stuff. Will that change? Maybe!

Taking all of these features into account, it’s probably more accurate today to call Vercel a frontend cloud, meaning a collection of services centered on the frontend that make building apps easier. At their conference last week, they announced a bunch of new features that support this story:

  1. Storage: simple object storage—think files, videos, etc.—but embedded at “the edge” i.e. on servers across the world close to your users (called “Vercel Blob” which is fun to pronounce)
  2. Databases: managed databases, starting with a key-value store and Postgres
  3. Visual editing: the ability to edit your frontend by just clicking and typing¹

If you’re thinking “wow, this sounds like a cloud” you’d be right. A cloud provides managed infrastructure for developers so they can build faster; Vercel is definitely a cloud at this point, but a cloud focused on the frontend and abstracting the backend.

There are a few other small announcements around security and code management, but the ones above are the big ones. Over the time I’ve been using it (back when it was called Zeit), it’s been cool to see Vercel evolve from a simple frontend deployer to a proper way to build and run a whole app.


  • ¹ Sort of. Behind the scenes it’s an integration with your content management system, so some work needs to happen. Nevertheless, it’s cool.