Phillip Smith
coding

Data is the secret sauce of static news apps

How to give your static app that powerful wasabi kick

(Scroll down to continue reading)

Many might think that static site generation concepts can only be applied when developing exceedingly simple news applications. However, nothing could be further from the truth. Static site development patterns provide several hooks that allow both content creators and content consumers to enjoy a rich “Web app”-like experience, while still meeting the architectural requirements of being scaleable, fast, and cheap.

The secret “back-end” sauce that make static site generators so practical and exciting is compile-time data access: the ability to consume data from a variety of sources and to emit that data at various points during the process of site generation. This is how static apps free themselves from the shackles of a database.

The not-so-secret sauce that can transform a relatively static news app into something even more interactive – at times approaching the experience of a “full stack” Web app – is the addition of client-side data access.

Put together, these two opportunities for accessing data create a killer recipe for a static news app. We’re going to explore both of these ideas a bit more today.

Why data matters

So, what’s all this talk about “data” in static apps? If you’re less familiar with the concept, there are two big roles that data typically provides in a static news app:

  • Editorial workflow: Letting non-technical users provide content – copy, images, links, etc. – in a way that is more familiar to them, and that stays out of the way of your development workflow.

  • Apps that update themselves: Thinking through typical news app scenarios – crime, budgets, public officials, etc. – it’s likely that newer information will be available over time. Data lets that information get updated without much hassle.

Like any well-designed app, it’s helpful if there’s a separation of concerns and static apps try to implement that pattern using data, templates, and generators.

Getting data from spreadsheets

Let’s start with our two usual suspects, NPR’s static app template and the Chicago Tribune’s Tarbell project.

NPR’s app template provides two out-of-the-box ways of accessing data: using a Google Spreadsheet as a simple key/value store and downloading a Google Spreadsheets and converting it to a CSV file.

Quoting from the Tarbell documentation:

“data can come from Google spreadsheets, a local or remote CSV or Excel file, or tarbell_config.py’s DEFAULT_CONTEXT.”

The last part about DEFAULT_CONTEXT just means that the app will read data from its configuration file, which is fairly standard stuff.

Another group that is following the “showing your code” mantra, and also building editorial news apps using a static site generator, is the product team at Vox Media. Taking a quick look at their template for the Verge 50, we can see that they’re also using a Google Spreadsheet to provide data to one of their recent editorial apps.

Using local data files

One of the ways of getting data into a static app that excites me the most is local data files. Though some will say that local data files are not as easy to edit for non-technical folks, I believe that is a challenge already on route to being solved.

One of the advantages of local data files in my experience is the opportunity to git commit -am all of them along with the app itself, making the project somewhat self-contained and not reliant on an external service for copy editing.

Both Jekyll, which I’ve talked about before, and Middleman – the virtually identical static site generator used in the Vox Product example – “allow you to create .yml, .yaml or .json files in a folder called data, and makes this information available in your templates.” Mind-blowing implications, no?

Jekyll takes this concept further with it’s new collections feature, which combines the concept of a file that provides data to the app, with the convenience of using a standard markdown-formatted file that provides a large amounts of easily-editable text.

It’s probably easiest to think about this like a collection of book or music reviews, where each review is kept in a _reviews/great_review.md file, and where that file contains both structured data (album name, tracks, ratings, etc.) and unstructured text (the review itself). Useful, when you think about it!

Where data can be used

Now that there’s lots of data available to the app at the point where it’s going to be generating static files, that data can be used in all sorts of interesting ways.

For example, with Tarbell, “variables can be used in HTML, CSS, and Javascript files.” And, with Jekyll, data can be use “anywhere that has front matter,” which is just a fancy way for saying any file that has some standard markers at the top, including HTML, markdown, CSS, JavaScript and even other data files.

This is an incredibly powerful feature when you think about it. It enables you to store data that you can use over-and-over again in your templates or other files (DRY!), and to set site-specific options outside of a project’s configuration file.

Combining this technique with a dynamic stylesheet language, like Less or Sass, could make it easy to create quickly-adjustable “themes” in a static news app template. Or one could use it with JavaScript in any number of interesting ways, like providing an initial data set directly, thus avoiding the need to request and parse it from somewhere when the page or app is first loading.

Accessing external data from the client

Last but not least, as I’m sure is obvious to most readers here, once your static news app is deployed to a user-accessible location – either a server, or S3 buckets, or what-have-you – there’s all kinds of modern-day client-side Web magic available to take advantage of.

Several earlier and pioneering efforts at static news app development explored the client-side approach even for the “copy” data – the text, images, and other information that actually constitutes the useful bits of the app. They did this using tools like Tabletop.js at first. However, Google Docs proved to be at time unreliable and at time a black box, which lead to work arounds like Flatware.

I think most have decided, for a number of reasons – scale, reliability, SEO, etc. – that having the content and copy “baked” right into the app makes the most sense.

What’s exciting to think about these days is the opportunity to “bake-in” the basic experience, and then layer on top additional data or interactivity with client-side techniques. This can be done using any number of well-known libraries, patterns, and approaches, and a limitless and growing stable of data sources JSON, CSV, AJAX/J/H, etc.

Where this all leads

There are so many new options these days that it’s impossible to mention them all in the context of this post – but, as new services and products like Deployed become available, I can’t help but think of the growing number of ways to get up-and-running quickly with a static news app that is also able authenticate a user and create/read/update/delete data from an very simple data store. Just think of the possibilities!

If you have thoughts on the above – examples of other approaches, corrections, tricks, or just opinions – please add them in the comments or drop me a line on Twitter.

If you’d like to be notified of the next post, just subscribe to the comments and I’ll post the link there.

About

Hi, I'm Phillip Smith, a veteran digital publishing consultant, online advocacy specialist, and strategic convener. If you enjoyed reading this, find me on Twitter and I'll keep you updated.

Related

Want to launch a local news business? Apply now for the journalism entrepreneurship boot camp

I’m excited to announce that applications are now open again for the journalism entrepreneurship boot camp. And I’m even more excited to ...… Continue reading