npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gatsby-plugin-ed-comments

v0.4.8

Published

Talkyard (previously named EffectiveDiscussions) embedded comments for Gatsby static sites.

Downloads

39

Readme

gatsby-plugin-ed-comments

RENAMED. Here's the new location, go there: https://www.npmjs.com/package/@debiki/gatsby-plugin-talkyard

The new name is Talkyard (instead of EffectiveDiscussions and ed-comments).


Source code: https://github.com/debiki/gatsby-plugin-ed-comments

This adds embedded comments to your website or blog, in an iframe. The commenting system is named Talkyard (previously, it was named EffectiveDiscussions), and it's open source, here: https://github.com/debiki/ed-server

We provide hosting too, see: https://www.talkyard.io/ and look at the Blog Comments price plan.

Example blog post: https://www.kajmagnus.blog/new-embedded-comments
(scroll down to the bottom)

This is Beta software. Maybe you'll need to update your embedding code or config values every now and when, before everything stabilizes.

This plugin will soon be renamed to -talkyard- something.

Installation

NO DON'T INSTALL THIS. The plugin has been RENAMED. Go here instead:

  • https://www.npmjs.com/package/@debiki/gatsby-plugin-talkyard
npm install --save gatsby-plugin-ed-comments  # with npm
yarn add gatsby-plugin-ed-comments            # with Yarn

And tell us that you're using this — so we get the chance to notify you about security updates and other stuff. Send us an email: support at ed.community.

How to use

// In your gatsby-config.js
plugins: [
    {
      resolve: `gatsby-plugin-ed-comments`,
      options: {
        commentsServerUrl: 'https://www.example.com'
      }
    },
]

Where https://www.example.com is the address to your Talkyard server, if you have installed it yourself. Or the address to your Talkyard site hosted by us, e.g. https://comments-for-your-blog.talkyard.io.

Then, in your blog post template:

import TalkyardCommentsIframe from 'gatsby-plugin-ed-comments';

// And where the comments shall appear:
<TalkyardCommentsIframe />

Changing the URL of a blog post?

Comments are remembered, per blog post URL. But what if you change the URL? Then all comments will be gone — unless you instead of URLs, use permanent discussion ids that stay the same when you change the URL. For each blog post, add a discussion id: (for all blog posts, otherwise weird bugs)

---
title: Blog post title
author: ...
date: ...
description: ...
discussionId: "2018-01-01-page-slug"   <—— look. You can type whatever, but avoid weird chars
---

Blog post text ...

And also tell React to include the discussion id in the props. At the GraphQL query at the bottom of the blog post template page:


export const pageQuery = graphql`
  query BlogPostBySlug($slug: String!) {
    site {
      siteMetadata {
        title
        author
      }
    }
    markdownRemark(fields: { slug: { eq: $slug } }) {
      id
      html
      frontmatter {
        title
        date ...
        discussionId        <—— look
      }
    }
  }
`;

And also change from: <TalkyardCommentsIframe /> to:

<TalkyardCommentsIframe discussionId={post.frontmatter.discussionId} />

Is this for you?

If you want to quickly test this, to see how it looks & works at your website, without spending time signing up or getting your own server — then, when configuring this plugin, set commentsServerUrl to undefined. Then a temporary test demo site will be used instead — and comments people post might get deleted at any time.

Getting help

Here's our support forum: https://www.talkyard.io/forum/latest/support

Changelog

  • v0.4.7 Use CDN CNAME: cdn.talkyard.net, and comments-demo not comments.demo.
  • v0.4.6 Use CDN CNAME: cdn.talkyard.io.
  • v0.4.5 Rename to Talkyard, should be backwards compatible.
  • v0.4.4 Fix compilation error: don't use window.location.
  • v0.4.3 Bug fix: Reload comments if navigating to new blog URL.
  • v0.4.2 Initial release.

License

Copyright (c) 2017-2018 Kaj Magnus Linberg. The MIT license.