DEV Community

Cover image for #01: Introducing Static Web Apps
Nitya Narasimhan, Ph.D for Microsoft Azure

Posted on • Updated on • Originally published at azurestaticwebapps.dev

#01: Introducing Static Web Apps

Welcome to Week 1, Day 1 of #30DaysOfSWA!!

This week, we'll focus on the Core Concepts behind Azure Static Web Apps, starting with an introduction to SWA and continuing on to building, enhancing, and deploying, your SWA for users to experience. Let's get started today by Introducing Static Web Apps.

What We'll Cover

  • What is Azure Static Web Apps?
  • How is it architected?
  • Where can I use it?
  • 10 Key Features to know
  • Exercise: Explore SWA Examples!
  • Resource: Static Web Apps Overview

Banner Image for Day 1

About the Author(s)

Today's post is co-authored by Simona Cotin - a Principal PM on the Azure Static Web Apps team. Find her @simona_cotin or follow her below on dev.to!


What is Azure SWA?

Azure Static Web Apps is a cloud-based service that automatically builds and deploys full-stack web apps to Azure directly from your code repository. The service works with popular code sources like GitHub, GitLab and BitBucket by default. Look for the Deploying SWA post later this week where we walk through the details here.

The benefit to you as a developer is that it simplifies your developer experience. Just commit changes to your application source code into the repository and step back. The SWA service monitors the codebase for changes, automatically rebuilding and redeploying your app to the hosted endpoint. Look for a Previewing SWA post later this week where we'll talk about built-in support for previewing apps in non-main branches, or in pull requests, that make it easier to manage apps with multiple contributors.

Prefer a 5-minute video overview? We have you covered - check out the first video from the Azure Static Web Apps: Tips & Tricks playlist.


How is it Architected?

Static Web Apps can be built using popular front-end frameworks including React, Angular, Vue, Svelte, or Blazor. These apps typically consist of a collection of static content assets (HTML, JS, CSS and media files) coupled with a dynamic API endpoint to handle client interactions in real time.

Traditional web application deployments use a single web server to serve both the static assets and the API endpoint. This can make scaling these services sub-optimal in terms of global availability and runtime costs.

With Static Web Apps, we separate static assets from API endpoints, allowing each to be scaled using the technology best equipped to do this in a cost-effective manner.

  • Static assets get served from geographically-distributed content servers worldwide, distributing the load and speeding up access to users nearby.
  • API endpoints are hosted using a serverless architecture, spinning up compute resources (to execute functions) only as needed, in response to trigger events.

This architecture - with static content servers, serverless backends, and automated CI/CD workflows - simplifies your development workflow allowing you to focus your attention on the application logic and user experience components of your modern web application.

High level overview of Azure Static Web Apps


Where can I use it?

That's a great question!! You can use Static Web Apps to:

  • Build modern web apps with front-end frameworks (like Angular, React, Vue etc.)
  • Publish static web sites (using Gatsby, Hugo, Astro, Docusaurus, VuePress etc.)
  • Deploy web apps with frameworks like Next.js and Nuxt.js.

You can configure your existing application to use Azure Static Web Apps using an IDE like VS Code, or using Command-line tools (like Azure CLI and SWA CLI), or through the browser (using the Azure Portal). Look for two posts later this week that dive into this in detail:

  • Building SWA (tomorrow) to get started with SWA.
  • Configuring SWA (later) to customize app behaviors & build process.

But wait - there's one more thing.

Keep an eye out for an announcement later in the series where we'll be debuting a new Community Showcase page - here's a sneak preview. You can filter it to see examples from popular front-end technologies, select "open source" to see the repository for inspiration - and consider adding your own project at the end of your journey!

Preview of Azure Static Web Apps Showcase


10 Things To Know!

We've talked about what SWA is, how it's architected, and where you can use it. But what are the key features that make it powerful? Read the Documentation for the detailed list - or scan the visual guide below for a summary!

Visual Guide to Azure Static Web Apps

Want to download a hi-res version of this image? Download it from this GitHub repository link

Exercise:

That was a lot to digest right? It helps to see some of these ideas in action. So here's two things you can do before we dive into the quickstart tomorrow:

  • Visit the Showcase Gallery repository to see some examples of SWA in Action.
  • Follow the #staticwebapps tag to see community-posted articles on usage.

Top comments (2)

Collapse
 
xinhaiwang profile image
Xinhai Wang

visual guide picture is way too small

Collapse
 
nitya profile image
Nitya Narasimhan, Ph.D

Thanks for the heads-up - I think dev.to images are optimized but you can find the original (hi-res) image on the GitHub repo here

Hope that helps - and I'll update the post with the link as well