1.0.6 • Published 5 years ago

gatsby-source-medium-feed v1.0.6

Weekly downloads
1,151
License
MIT
Repository
github
Last release
5 years ago

Gatsby plugin medium feed

This plugin returns the content of medium posts.

Available properties are:

  • title
  • date
  • author
  • link
  • content
  • thumbnail
  • slug

Usage

  1. Run npm i -S gatsby-plugin-medium-feed
  2. Add plugin to your gatsby-config.js :
plugins: [
  {
    resolve: 'gatsby-plugin-medium-feed',
    options: {
      userName: '@...', // Medium user name
      name: 'MediumFeed', // GraphQL query AllMediumFeed
    },
  },
]