gatsby-source-medium-feed
v1.0.6
Published
Gatsby plugin to get posts written in medium
Downloads
2,018
Maintainers
Readme
Gatsby plugin medium feed
This plugin returns the content of medium posts.
Available properties are:
- title
- date
- author
- link
- content
- thumbnail
- slug
Usage
- Run
npm i -S gatsby-plugin-medium-feed
- Add plugin to your
gatsby-config.js
:
plugins: [
{
resolve: 'gatsby-plugin-medium-feed',
options: {
userName: '@...', // Medium user name
name: 'MediumFeed', // GraphQL query AllMediumFeed
},
},
]