Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/clipchamp/gatsby-plugin-seo-export

A GatsbyJS plugin to export SEO information for each page into a CSV
https://github.com/clipchamp/gatsby-plugin-seo-export

gatsby gatsby-plugin gatsbyjs seo seo-optimization

Last synced: about 1 month ago
JSON representation

A GatsbyJS plugin to export SEO information for each page into a CSV

Awesome Lists containing this project

README

        

# gatsby-plugin-seo-export

Extracts common SEO tags from pages, and creates csv files for each template containing the path alongside the SEO tags.

## Usage

Install the plugin:
```bash
npm i @clipchamp/gatsby-plugin-seo-export
```

Add it to your `gatsby-config.js`
```js
plugins: [
{
resolve: `@clipchamp/gatsby-plugin-seo-export`,
},
]
```

Create a script in your `package.json` that sets the `SEO_EXPORT` environment variable to true
```js
"scripts": {
"seo": "SEO_EXPORT=true npm run build"
}
```