Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 7 days ago
JSON representation
A GatsbyJS plugin to export SEO information for each page into a CSV
- Host: GitHub
- URL: https://github.com/clipchamp/gatsby-plugin-seo-export
- Owner: clipchamp
- License: mit
- Created: 2019-03-21T00:35:58.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T06:03:15.000Z (over 1 year ago)
- Last Synced: 2024-11-11T13:52:40.120Z (about 1 month ago)
- Topics: gatsby, gatsby-plugin, gatsbyjs, seo, seo-optimization
- Language: JavaScript
- Size: 555 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
```