Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/devs-group/gatsby-source-medium-feed

Gatsby plugin to get posts written in medium
https://github.com/devs-group/gatsby-source-medium-feed

Last synced: 3 months ago
JSON representation

Gatsby plugin to get posts written in medium

Awesome Lists containing this project

README

        

# Gatsby source 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-source-medium-feed`
1. Add plugin to your `gatsby-config.js` :

```js
plugins: [
{
resolve: 'gatsby-source-medium-feed',
options: {
userName: '@...', // Medium user name
name: 'MediumFeed', // GraphQL query AllMediumFeed
},
},
]
```