Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@benrobertson/gatsby-plugin-webmention

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@benrobertson/gatsby-plugin-webmention

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

  • 0.2.0
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Gatsby Plugin Webmention

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

Installation

yarn add gatsby-plugin-webmention

Getting Started

  1. Configure the identities you want to use to log in to webmention.io using the identity option.
  2. Deploy that so the generated HTML tags are visible to webmention.io.
  3. You can now log into webmention.io and get your username. Put your new username in the config as well and redeploy.

Config

// 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: "username@example.com"
        },
        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 to get Tweets sent as webmentions to webmention.io.

FAQs

Package last updated on 24 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc