Build a SEO-friendly blog with Meteor and a headless CMS

You know the story… you’ve built a great MeteorJS website for your client and they’d like a blog that lives in a subdirectory (not a subdomain) for SEO purposes.

In this tutorial we are going to show you how to build a CMS-powered blog using Meteor and a headless CMS. The finished code for this tutorial is available on Github.

What is a headless CMS?

A headless CMS is an API-based CMS that lets you build CMS-powered apps using any programming language. You can think of a headless CMS as similar to WordPress except that you can build the front-end of your website in your technology of choice and then plug-in dynamic content using an API.

In this tutorial we’ll use ButterCMS, a headless CMS and blogging engine. You can try ButterCMS yourself by signing in with Github.

Getting Started

If you’re new to Meteor, check out their quick start guide or follow the steps below.

Install Meteor:

curl https://install.meteor.com/ | sh

Create a new app and make sure it runs:

meteor create meteor-cms-blog
cd meteor-cms-blog
meteor npm install
meteor

Open your web browser and go to http://localhost:3000 to see the app running.

Creating the blog

First install the ButterCMS Node.js API client:

meteor npm install buttercms

We’ll also use Iron Router to setup our blog routes:

meteor add iron:router

We’ll then create some basic routes and templates. We’re using an API token for a ButterCMS test account.

First we’ll add routes to client/main.js:

import Butter from 'buttercms';
import './main.html';
const butter = Butter('de55d3f93789d4c5c26fb07445b680e8bca843bd');
Router.route('/', function() {
this.render("Home")
});
Router.route('/blog', function() {
const resp = await butter.post.list({page: 1, page_size: 10}
this.render('Blog', {data: {posts: resp.data.data}});
});
Router.route('/blog/:slug', function() {
const slug = this.params.slug;
  const resp = await butter.post.retrieve(slug)
const post = resp.data.data;
  this.render('Post', {data: {post: post}});
});

Next we’ll add templates to client/main.html:

<head>
<title>Meteor Blog</title>
</head>
<body>
</body>
<template name="home">
<a href="/blog">View blog</a>
</template>
<template name="blog">
<h2>Blog Posts</h2>
{{#each posts}}
<div>
<a href="/blog/{{slug}}">{{title}}</a>
</div>
{{/each}}
</template>
<template name="post">
<h2>{{post.title}}</h2>
{{{post.body}}}
</template>

Let’s take a closer look at one of our routes to see what’s happening.

Router.route('/blog/:slug', function() {
const slug = this.params.slug;
  const resp = await butter.post.retrieve(slug)
const post = resp.data.data;
  this.render('Post', {data: {post: post}});
});

In the code above, we create a route for the URL /blog/:slug which takes a post slug as a URL parameter, and then uses the slug to make an API request to ButterCMS to fetch the post and render it.

SEO

Our blog is setup, but crawlers from search engines and social networks do not execute Javascript so our blog has terrible SEO.

First we’ll install the ms-seo helper package and make sure we have good HTML titles, descriptions, and meta tags.

meteor add check
meteor add manuelschoebel:ms-seo

ms-seo provides a simple SEO.set method for configuring tags:

Router.route('/blog/:slug', function() {
const slug = this.params.slug;
  const resp = await butter.post.retrieve(slug)
const post = response.data.data;
  SEO.set({
title: post.seo_title,
meta: {
description: post.meta_description
},
rel_author: 'https://www.google.com/+ButterCMS',
og: {
'title': post.seo_title,
'description': post.meta_description,
'image': post.featured_image
}
});
  this.render('Post', {data: {post: post}});
});

You can verify that tags are getting set properly by inspecting the DOM.

Finally, we want to enable server-side rendering of our blog so that its crawl-able by search engines and social networks like Twitter.

The easiest way to do this is to use Meteor’s hosting platform, Galaxy, which provides an integrated pre-rendering service (Prerender.io). The Prerender.io service is included as part of Galaxy at no additional cost.

Follow Meteor’s guide for deploying to Galaxy. To turn on the built-in Prerender.io integration, add the Galaxy SEO package:

meteor add mdg:seo

If you don’t want to use Galaxy, you can manually integrate Prerender.io. Another option is implementing server-side rendering into your app. At the time of this writing, server-side rendering isn’t natively supported by Meteor, but you can check out Meteor SSR or Flow Router’s alpha release of SSR support.

Wrap Up

Meteor is a powerful development platform that solves a lot of pains of building Javascript apps for web, mobile, and desktop. However there aren’t many CMS options available for building CMS-powered features in Meteor like blogs, FAQS, and templated pages. A headless CMS like ButterCMS let you easily build CMS-powered apps in Meteor.

We hope you enjoyed this tutorial. If you have any questions about setting up your ButterCMS-powered Meteor app reach out to me at roger@buttercms.com or on Twitter.