Progressive Enhancement - What It Is and Isn’t, a Practical Introduction With Svelte

Rate this content
Bookmark

Progressive Enhancement is the philosophy of providing a basic, functional experience to everyone, regardless of device, and adding additional layers of interactivity and delight as they are supported. The last decade of web development, focusing on SPAs, where JavaScript is a hard requirement, have made this philosophy very difficult – how do we make websites that are fundamentally built with JavaScript accessible to users without it? This talk examines the philosophy behind Progressive Enhancement, then focuses on some concrete examples (including a dive into Svelte compiler output!) of how we can build functional, reliable, and usable experiences for all, adding delightful interactivity for those who can support it.

This talk has been presented at JSNation 2023, check out the latest edition of this JavaScript Conference.

FAQ

Elliott Johnson is a software engineer at Versell working in the growth department. He also helps maintain Svelte and SvelteKit in his spare time.

Elliott Johnson started his professional life as a business intelligence analyst, then moved on to analytical data architecture, and eventually transitioned into software engineering, specializing as a front-end engineer with significant backend experience.

Progressive enhancement is a design philosophy that provides a baseline of essential content and functionality to as many users as possible, while delivering the best possible experience only to users of the most modern browsers that can run all the required code.

Progressive enhancement aims to provide a baseline functional experience for as many users as possible and then enhance the experience for those with better technology. Graceful degradation, on the other hand, starts with a full-featured experience and then provides fallbacks for less capable technology. They are complementary approaches.

Common strategies include executing code on the server, detecting whether features are supported before using them, being ready for features to fail and fall back to better-supported defaults, and using polyfills to emulate new browser functionalities in older browsers.

Progressive enhancement is important because front-end code is shipped to environments beyond the developer's control, such as users with slow internet connections, outdated devices, or the latest tech. It ensures a functional experience for all users, regardless of their technology.

Elliott Johnson recommends using meta-frameworks like SvelteKit or Next.js, which take a more server-side rendering (SSR) first approach to web development.

The goal of progressive enhancement is to meet user needs by being thoughtful about what code is shipped and how it meets those needs, rather than aiming to ship zero kilobytes of JavaScript.

Elliott Johnson's acronym app generates random acronyms, allows users to share, rotate, and copy them, and enables training of the model to improve the quality of the acronyms. It works well even on slow internet connections and without JavaScript.

The code for Elliott Johnson's acronym app is available on GitHub at github.com/tccsejohnson/lgtm.

Elliott Johnson
Elliott Johnson
20 min
05 Jun, 2023

Comments

Sign in or register to post your comment.

Video Summary and Transcription

Progressive enhancement is a strategy that provides a baseline experience for all users while enhancing it for those with modern browsers. Feature detection and graceful degradation are complementary approaches to achieve this. Polyfills can emulate new browser functionality in old browsers. Progressive enhancement is about meeting user needs while considering performance. Building apps in SvelteKit allows for easy development of progressively enhanced apps. Svelte components and DOM content provide a convenient way to structure and update the UI. Form submission and progressive enhancement can be achieved by enabling file upload and processing when JavaScript is disabled.

1. Introduction to Progressive Enhancement

Short description:

I'm Elliott Johnson, a software engineer at Versell, specializing in front-end development. Progressive enhancement is a strategy I've found effective in building applications that provide a baseline experience for all users while enhancing it for those with modern browsers. It involves using widely supported HTML, CSS, and JavaScript features and enhancing them through server-side rendering and feature detection.

Hey there. I'm Elliott Johnson and I'm so glad you've chosen to be here with me today. A huge thank you to the organizers of the JS Nation Conf for their hard work coordinating everything and allowing me to speak.

By way of introduction, I'm a software engineer at Versell working in our growth department. In my spare time, I help maintain Svelte and SvelteKit. I started my professional life as a business intelligence analyst and moved on from there to analytical data architecture. It was around this time that I realized that wasn't really what I wanted to be doing and started my long slide into software engineering, ending up a front-end engineer with an uncomfortable amount of backend experience.

The front-end space is very different to any of those spaces I worked in before, specifically regarding feature support. In other spaces, this isn't as big a concern. When you control the hardware and software, you can just deploy what you want for the most part. If you need more bandwidth, just buy it. If you need more processing power, just upgrade your instance. If you need a new version, upgrade your software. In the front-end space, though, you're shipping code to places you can't control. To Dan with the slow internet. Or Carla with the phone that's ten years old that she can't afford to replace. Or to Ebenezer, the owner of all the latest tech that can run anything you throw at him. To somebody in a developing country where the best phone they can afford is the equivalent of ten-year-old hardware. These people will experience the sites I write in different ways, and if I don't write my application with all of them in mind, I am going to degrade their experience.

But writing applications like this is challenging. It requires an understanding of HTML, CSS, JavaScript, and every other web technology that was beyond me even last year. One strategy that I have found for dealing with this that makes it more simple, and that I have become quite enamored with as of late, is progressive enhancement. Starting from MDN, progressive enhancement is a design philosophy that provides a baseline of essential content and functionality to as many users as possible, while delivering the best possible experience only to users of the most modern browsers that can run all the required code. Restated, we can say that progressive enhancement aims to provide a baseline functional experience for as many users as possible, enhancing this experience for those whose technology supports it. In practice, this is usually accomplished by building a base experience using widely supported HTML, CSS, and JavaScript features, and then enhancing them in one of a few ways. The first is executing code on the server. We took a brief step away from this as an industry with the advent of single-page apps. But, more recently, this approach has regained great popularity with newer meta-frameworks like SvelteKit or Next.js that take a more SSR-first approach to web development. The next way is detecting whether features are supported before we use them. Typically, we would use some construct like the addSupports query in CSS to see if a CSS feature is supported.

2. Feature Detection and Graceful Degradation

Short description:

You can accomplish the same thing through JavaScript using CSS.supports. There are libraries for feature detection that you can use. Another way is to not detect whether additional features are supported, but be ready for them to fail and fall back to better-supported defaults when they do. This is technically known as graceful degradation, not progressive enhancement, but they're basically the same thing in opposite directions, and they're so complementary that I like to lump them together.

You can accomplish the same thing through JavaScript using CSS.supports. There are libraries for feature detection that you can use. You can also use feature-specific methods of detection.

So, like, if you wanted to use the geolocation API, you could check to see that the key geolocation is defined in the Navigator object. There are a multitude of ways, but the important thing is thinking about, hey, I want to use this feature. I know it's not supported in a lot of browsers. Maybe it's really new. I should probably check to see that it's there before I use it.

But in some circumstances, that's not really realistic. We might be using a library that accesses features like this somewhat unpredictably and we don't really have a way of wrapping all of those in guard checks to provide fallbacks and enhancements. So, another way that we can do this is to not detect whether additional features are supported, but be ready for them to fail and fall back to better-supported defaults when they do. This is technically known as graceful degradation, not progressive enhancement, but they're basically the same thing in opposite directions, and they're so complementary that I like to lump them together. If that offends you, that's too bad.