Let's start with a story that many of you are familiar with … you're building a web app. You chose your favorite framework. Maybe React or Angular or Vue or even Svelte. Your company wants to deploy the web app and reach millions of people.

So you start making a checklist of everything you need to do:

Yes/No What you need
yes Develop your app
yes Code in GitHub
? Pull Requests that create staging sites
? CI/CD to build and deploy the app
? APIs that scale
? Reverse proxy to connect app to API
? SSL certificate
? Custom domain
? Authentication
? Authorization
? Server side route control
? Global scale of your static web assets

Wow, you just wanted to build your app!

What if you could lean on a service to provide all of this?

Rather than build up several servers and pipelines to handle these concerns, you start looking for a service that "just works". Point the service to your app and go.

Azure Static Web Apps

Released at Microsoft Build, Azure Static Web Apps (SWA) takes your source code to global availability. So you can develop your app while Azure Static Web Apps automatically builds and hosts it.

Static web apps are commonly built using libraries and frameworks like Angular, React, Svelte, or Vue. These apps include HTML, CSS, JavaScript, and image assets that make up the application. Under a traditional web server architecture, these files are served from a single server along side any required API endpoints. SWA helps host your static assets in an optimized server and makes them available in multiple servers around the world. SWA also optionally hosts your APIs using Azure Functions. Then it sets up a single URL for your users to visit.

You'll get everything in the checklist above!

Publishing a Web App involves a lot of work

Getting started

The first step is to create an app!

If you need one to try this service out you can follow these steps. If you have your own app, you can skip these steps entirely and proceed to the next section.

  1. Click on https://github.com/johnpapa/shopathome/generate to create a new repo
  2. Give your repo a name and create the repo
  3. Click the folder .github/workflows in the GitHub web interface
  4. Click on the file with the pattern azure-static-web-apps.****.yml
  5. Delete this file

It is important to delete the workflow file because you'll be creating your own very soon!

Now you have four apps! This is a monorepo with the same app written in Angular, React, Svelte and Vue, each in their respective folders.

The starter code includes the four apps and the starting point for an API that you'll use.

├ angular-app  👈 The Angular client app
├ api.         👈 The API app
├ react-app    👈 The React client app
├ svelte-app   👈 The Svelte client app
└ vue-app      👈 The Vue client app

Free Azure Trial

Next, you'll need an Azure account. Don't worry if you don't have one, you can use the free Azure trial. Did I say it was free? Good, because it's free.

Get your free trial here

Go to the Azure Portal

So you have your code and an Azure account, now you can create a SWA resource for your app!

  1. Go to the Azure Portal here

  2. Select your Azure subscription

  3. Create a resource group (this is just like a folder to collect all of your Azure "stuff")

  4. Name your SWA (ex: shopathome-sample)

  5. Choose the region closest to you

  6. Sign in with GitHub

  7. Select your GitHub organization

  8. Select your GitHub repository (ex: shopathome)

  9. Select your branch (ex: master)

  10. Click the Next: Build > button

    Create a Static Web Apps resource

Set your folder locations

  1. Set your App location to the javascript framework you prefer

    Framework App location value
    Angular angular-app
    React react-app
    Svelte svelte-app
    Vue vue-app
  2. Set the Api location to api

  3. Set the App artifact location to one of the following, based on the framework you chose:

    Framework App location value
    Angular dist/angular-app
    React build
    Svelte public
    Vue dist
  4. Click the Review + create button

  5. Click the Create button

Go to your web site

Azure is now creating your resources. SWA will buildcreate a GitHub Action workflow file and commit it to your repository in the .github/workflows folder. This file will watch the branch you selected for changes. When you push changes to the branch they will trigger the GitHub Action workflow to build and deploy your app to SWA!

  1. Soon, you'll be presented with a button to Go to Resource. Click this

  2. At the top of the page you'll see several links. Click the GitHub Action Runs link

    Create a Static Web Apps resource

  3. You'll be brought to your GitHub Action. When it is complete, you'll see green arrows everywhere.

    GitHub Action

  4. Once the action has completed the build and deploy, you can go back to the portal and click the URL link to open your web app

Depending on which framework you chose to build, you should see one of the following apps!

GitHub Action

Beyond the first look

Oh there is so much more you can do! You can add a custom domain with an SSL certificate, authentication, and authorization. You can make a changes in a new branch, make a pull request, and then have the GitHub Action build and deploy your changes to a staging/preview URL!

This may be your first look, but if you want to learn more you can try one of our hands-on tutorials at Microsoft Learn today!