Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ChristopherBiscardi/gatsby-plugin-webmention

https://webmention.io/ configuration and sourcing for Gatsby
https://github.com/ChristopherBiscardi/gatsby-plugin-webmention

Last synced: 17 days ago
JSON representation

https://webmention.io/ configuration and sourcing for Gatsby

Awesome Lists containing this project

README

        

# Gatsby Plugin Webmention

A Gatsby plugin that handles installing and sourcing for webmention.io.

## Installation

```shell
yarn add gatsby-plugin-webmention
```

## Getting Started

1. Configure the identities you want to use to log in to
[webmention.io](https://webmention.io) using the `identity` option.
1. Deploy that so the generated HTML tags are visible to webmention.io.
1. You can now log into webmention.io and get your username. Put your new
username in the config as well and redeploy.

## Config

```js
// gatsby-config.js
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-webmention`,
options: {
username: undefined, // webmention.io username
identity: {
// you need to specify at least one of the identities
// to be able to log in webmention.io
github: "username",
twitter: "username", // no @
email: "[email protected]"
},
mentions: true,
pingbacks: false,
forwardPingbacksAsWebmentions: "https://example.com/endpoint",
domain: "example.com",
fetchLimit: 10000, // number of webmentions to fetch
token: process.env.WEBMENTIONS_TOKEN
}
}
]
};
```

## Brid.gy

Consider setting up [brid.gy](https://brid.gy/) to get Tweets sent as
webmentions to webmention.io.