JSPM

gatsby-remark-opengraph

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q41275F
  • License MIT

Generate beautiful open graph images for Gatsby

Package Exports

  • gatsby-remark-opengraph

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gatsby-remark-opengraph) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme


gatsby-remark-opengraph logo
gatsby-remark-opengraph

Generate beautiful open graph images for Gatsby

License: MIT

MotivationKey FeaturesInstallationHow to useOptionsExamples

Motivation

If your website is shared, you’ll want to present the contents of your page in an optimal way to encourage people to pay it a visit. Open graph makes links to your website "unfold" into an image, title, and description.

If you want to find out more about this, read my article:

codepunkt.de open graph image

Key Features

This plugin allows you to create beautiful open graph images for your Gatsby site at build time, tailor-made to your content.

  • Choose a background image or color
  • Layout any number of texts on top of that background
  • Choose font, size, color and alignment for every text
  • Choose custom image dimensions and restrict your text to bounding boxes

Installation

Install gatsby-remark-opengraph as a development dependency to your current project

npm

npm install -D gatsby-remark-opengraph

yarn

yarn add -D gatsby-remark-opengraph

How to use

The default usage of this package is as a gatsby remark plugin.

However, you can also use it as a Node.js package to generate open graph images for any other usecase, for example for your Gatsby homepage or in a FaaS setup for your server side rendered site.

As a gatsby remark plugin

Use gatsby-remark-opengraph in the remark plugins array of your gatsby-config.js:

plugins: [
  {
    resolve: 'gatsby-transformer-remark',
    options: {
      plugins: [
        {
          resolve: 'gatsby-remark-opengraph',
          options: {
            /**
             * OPTIONS, see below!
             */
          },
        },
      ],
    },
  },
],

Options

Name Type Description
background string Required Either a 6 digit hex RGB color code or the absolute path to a background image.
texts Text[] Required An array of Text configuration objects. Can be empty. See table below!
filename string Default 'og-image.jpg' Filename the open graph image is saved as.
width number Default: 1200 Width of open graph image in pixels.
Must be equal to the background image width, if a background image is used.
height number Default: 630 Height of open graph image in pixels.
Must be equal to the background image height, if a background image is used.
outputPath string Default: '' Path the open graph image is saved to.
Is prefixed by ./public and suffixed by the filename option to form a full path.
log boolean Default: true Toggles output logging.

Text options

For each text that you want to write on top of your background, add an object to the array of texts.

For each entry, you must at least provide the text itself and a font file:

| Name | Type | Description | | | :-------------------- | :-------------------------- | :-------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --- | | text | string | Required | Your text. | | font | string | Required | Absolute path to a TrueType .ttf font. | | | fontSize | number | Default 64 | Font size of your text. | | color | string | Default: '#000000' | 6 digit hex RGB color code. | | x | number | Default: 0 | X position of your text in Pixels. | | y | number | Default: 0 | Y position of your text in Pixels. | | maxWidth | number | Default: Image width | Max width of your text. After reaching it, text will break to a new line. | | maxHeight | number | Default: Image height | Max height of your text. After reaching it, an error will be thrown! | | horizontalAlign | 'left' / 'center' / 'right' | Default: 'left' | Horizontal alignment of your text.

  • left: text will grow to the right from it's x position
  • center: text will grow to left and right from it's x position
  • right: text will grow to the left from it's x position
| | verticalAlign | 'top' / 'center' / 'right' | Default: 'top' | Vertical alignment of your text.
  • top: text will grow to the bottom from it's y position
  • center: text will grow to top and bottom from it's y position
  • bottom: text will grow to the top from it's y position
|

General usage

The plugin also exports a named function that accepts the same options as the remark plugin shown above, but function options are called with null instead of a markdownNode so it's a good idea to provide strings for path and Text.text.

If you're using Gatsby, you can use this in your gatsby-node.js to generate a generic open graph image for your site:

const { createImage } = require('gatsby-remark-opengraph')

exports.createPages = async ({
  actions,
  graphql,
  reporter,
}) => {
  await createImage({
    // results in ./public/og-image.jpg if no filename is set
    path: '',
    /**
     * more OPTIONS, see above!
     */
  })
}

Examples

Please provide me with examples of the open graph images that you generated! 😀

I will choose a few beautiful examples and then show them here with a link to your site.