title | description | type | service | stub | i18nReady |
---|---|---|---|---|---|
ButterCMS & Astro |
Add content to your Astro project using ButterCMS |
cms |
ButterCMS |
false |
true |
import { Steps } from '@astrojs/starlight/components'; import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro'
ButterCMS is a headless CMS and blog engine that allows you to publish structured content to use in your project.
:::note For a full blog site example, see the Astro + ButterCMS Starter Project. ::: In this section, we'll use the ButterCMS SDK to bring your data into your Astro project. To get started, you will need to have the following:
-
An Astro project - If you don't have an Astro project yet, our Installation guide will get you up and running in no time.
-
A ButterCMS account. If you don't have an account, you can sign up for a free trial.
-
Your ButterCMS API Token - You can find your API Token on the Settings page.
```ini title=".env"
BUTTER_TOKEN=YOUR_API_TOKEN_HERE
```
:::tip
Read more about [using environment variables](/en/guides/environment-variables/) and `.env` files in Astro.
:::
-
Install the ButterCMS SDK as a dependency:
```shell pnpm add buttercms ``` ```shell yarn add buttercms ```npm install buttercms
-
Create a
buttercms.js
file in a newsrc/lib/
directory in your project:import Butter from "buttercms"; export const butterClient = Butter(import.meta.env.BUTTER_TOKEN);
This authenticates the SDK using your API Token and exports it to be used across your project.
To fetch content, import this client and use one of its retrieve
functions.
In this example, we retrieve a collection that has three fields: a short text name
, a number price
, and a WYSIWYG description
.
---
import { butterClient } from "../lib/buttercms";
const response = await butterClient.content.retrieve(["shopitem"]);
interface ShopItem {
name: string,
price: number,
description: string,
}
const items = response.data.data.shopitem as ShopItem[];
---
<body>
{items.map(item => <div>
<h2>{item.name} - ${item.price}</h2>
<p set:html={item.description}></p>
</div>)}
</body>
The interface mirrors the field types. The WYSIWYG description
field loads as a string of HTML, and set:html
lets you render it.
Similarly, you can retrieve a page and display its fields:
---
import { butterClient } from "../lib/buttercms";
const response = await butterClient.page.retrieve("*", "simple-page");
const pageData = response.data.data;
interface Fields {
seo_title: string,
headline: string,
hero_image: string,
}
const fields = pageData.fields as Fields;
---
<html>
<title>{fields.seo_title}</title>
<body>
<h1>{fields.headline}</h1>
<img src={fields.hero_image} />
</body>
</html>
- Add yours!