Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/devs-group/gatsby-source-medium-feed
- Owner: devs-group
- Created: 2019-05-01T18:29:17.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T20:48:34.000Z (about 2 years ago)
- Last Synced: 2024-10-06T22:47:32.594Z (4 months ago)
- Language: JavaScript
- Size: 193 KB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
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
},
},
]
```