Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up

Announcing Gatsby Recipes

Kyle Mathews
April 16th, 2020

I’m excited to announce Gatsby Recipes, a new tool to automate common site building tasks.

Recipes are run from the CLI and automate common tasks like creating pages and layouts, installing and setting up plugins, adding a blog to a site, setting up TypeScript, and many more.

Gatsby ships with a number of default recipes and it’s easy to create your own for use on your sites. Recipes allow you to install NPM packages, add Gatsby plugins, generate pages and other code. Recipes are written using Markdown and React components.

To kickstart the new era of Gatsby Recipes, we’ve created 11 official recipes with more on the way! These include recipes for adding TypeScript, Theme UI, Sass, Cypress, and setting up useful techniques like animated page transitions, and persistent layout components.

Watch me add Theme UI to a Gatsby site in under 45 seconds

Gatsby has 1000s of plugins and themes and is an incredibly flexible tool for creating for the web. With this comes the problem of discovering how to accomplish a specific task. It’s a challenge when users enter the Gatsby ecosystem, they have to translate “I want to do x” to how “x” is done in Gatsby. Last year, Marcy Sutton led our effort to add dozens of “recipes” to help people with this on gatsbyjs.org. But we think these will work even better if you can run them directly on the CLI. Gatsby Recipes teach users how to accomplish desired tasks in Gatsby while also enabling them to automate the process.

So now, instead of Googling how to add Styled Components support to Gatsby, you simply run gatsby recipes styled-components and an interactive workflow walks you through the steps.

Similarly if you want to add a blog, you can now run gatsby recipes gatsby-theme-blog and immediately start blogging.

We want there to be 10s of thousands of recipes you can search, run, and remix per your needs.

Human-friendly automation

Recipes are written in MDX—a combination of Markdown and React components—readable by both humans and machines. (Other “infrastructure as code” automations, like AWS CloudFormation, use kinda-sorta legible YAML templates that favor the machines). We picked MDX to make Gatsby Recipes instructions and explanations easily readable for humans while using React components syntax to declare to Gatsby Recipes the desired state of the world. This means Gatsby Recipes read like actual little recipes. Writing and using them could be…dare we say it…fun.

We take a lot of inspiration from literate programming tools like Eve and HyperCard.

To try out Recipes, update to the latest version of the Gatsby by running:

  • npm install -g gatsby-cli@latest
  • npm install gatsby@latest

Then run gatsby recipes to see the list of recipes and to try one out.

List of recipes to run

We want to see what you come up with! Share your recipes with the community in the Gatsby Recipes umbrella issue!

We’re very excited to ship Recipes. We care a lot about the Gatsby developer experience and we want to make setting up and maintaining sites a lot lot easier. This release is the first step towards adding a lot more automation capabilities to Gatsby.

FAQs

What does a recipe look like?

Recipes are written in MDX, so a combination of Markdown and React components. The React components instruct Gatsby Recipes to make sure things exist like files or NPM packages e.g. Emotion.

A full recipe for adding the CSS-in-JS library Emotion looks like the following:

How can I write my own?

You can run local recipes or recipes at a URL. The docs walk you through writing your first Recipe!

Will there be more official recipes? Do you want contributions?

Yes! We want to have official recipes for all common use cases. Even if a recipe isn’t yet possible to create (i.e. it’s missing a required resource), please suggest it in the Recipes Umbrella issue to start the conversation.

What are future plans for recipes?

A few areas we’re exploring.

  • How to translate tutorials to Recipes. The Gatsby community has created a ton of tutorials. What if tutorials were Recipes but could be still read as tutorials and run as Recipes where they’d walk you through setting up sites, adding technologies and services, etc. This would be a boon to many people new to Gatsby as it’d automate fiddly details like installing packages and plugins, creating files in the right place, etc. that slow learning the concepts and technology.
  • Expanding the capabilities available to Recipes. There’s a lot more Recipes could automate like setting up cloud services, controlling content types, deeper integrations with Gatsby and other core web technologies, etc. Anything with an API, a recipe could automate.
  • A GUI version of Recipes. We’re working on a Desktop app for Gatsby and Recipes will fit beautifully into it.
  • Referencing other recipes from within a recipe to create recipe “stacks”. The ability to compose recipes opens up a lot of interesting possibilities.
  • Executable recipes. Right now React components in recipes are static declarations but what if you could code recipe components that respond to real data from your environment? It’d be like React Native but for infrastructure 🤯

What are some inspirations for Recipes?

  • HyperCard for their focus on approachability and integrated IDE and card interface
  • Infrastructure as Code — a lockfile for your cloud resources. It’s an awesome paradigm and we wanted that for frontend development.
  • Literate programming human-friendly coding which lets recipe authors teach others what the code is doing (including their future self)

I’m curious, how did you build this?

React and GraphQL of course! 😉

The terminal UI (like all of our Gatsby CLIs) are built with Ink a very cool project that allows you to build CLIs with React. It makes building data-driven CLI apps much more approachable than other methods we’ve tried.

The CLI app talks directly to a GraphQL API. It sends MDX recipes to the server which then parses them and constructs the operation plan which is passed back to the CLI. The user is walked through the steps of the recipe in the UI and we use GraphQL subscriptions to send back updates from the server as steps are executed.

Each resource component is operating by a resource module which implements hooks for creating/reading/updating/destroying resources. Each new resource we implement enables new types of recipes to be created.

We leverage XState to control the flow of running Recipes.

Some links to interesting bits of code:

Share on TwitterShare on LinkedInShare on FacebookShare via Email

Founder @ GatsbyJS. Likes tech, reading/writing, founding things. Blogs at bricolage.io.

Follow Kyle Mathews on Twitter

Tagged with Gatsby Cloud, gatsby-inc, releasesView all Tags

Talk to our team of Gatsby Experts to supercharge your website performance.

Contact Gatsby Now
© 2023 Gatsby, Inc.