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: about 1 month 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T06:03:15.000Z (over 1 year ago)
- Last Synced: 2024-09-29T14:30:04.478Z (about 2 months ago)
- Topics: gatsby, gatsby-plugin, gatsbyjs, seo, seo-optimization
- Language: JavaScript
- Size: 555 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- 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"
}
```