Software Alternatives & Reviews

How to add comments to your Gatsby blog

utterances GraphComment Commento
  1. A lightweight comments widget built on GitHub issues.
    Pricing:
    • Open Source
    // src/components/comments.js Import React, { useEffect } from 'react'; Const COMMENTS_ID = 'comments-container'; Const Comments = () => { useEffect(() => { const script = document.createElement('script'); script.src = 'https://utteranc.es/client.js'; script.setAttribute('repo', 'emgoto/emgoto-comments'); script.setAttribute('issue-term', 'pathname'); script.setAttribute('theme', 'dark-blue'); script.setAttribute('crossorigin', 'anonymous'); script.async = true; const comments = document.getElementById(COMMENTS_ID); if (comments) comments.appendChild(script); // This function will get called when the component unmounts // To make sure we don't end up with multiple instances of the comments component return () => { const comments = document.getElementById(COMMENTS_ID); if (comments) comments.innerHTML = ''; }; }, []); return ( <div id={COMMENTS_ID} /> ); }; Export default Comments;.

    #Social Networks #Project Management #Commenting Service 50 social mentions

  2. Add modern discussion and social interactions to your website
    GraphComment works similarly to other comment systems like Disqus. They host the comments for you, and allow users to create an account with a username and avatar on their platform. They provide a free tier for up to 1 million data loads a month.

    #Social Networks #Commenting Service #Project Management 2 social mentions

  3. A very fast, feature-full, and privacy-focused comment service for handling discussions on the internet. At 4.6 kB with no dependencies, it's the fastest comment service around.
    If you don’t mind paying, it may be worth taking a look at other options like Commento or FastComments. Unfortunately there doesn't seem to be anything on the market that lets you heavily customise the design to suit your needs. The closest may be Hyvor which does provide a wide variety of appearance settings. Their system starts at $5 a month for 100k monthly pageviews.

    #Social Networks #Commenting Service #Project Management 5 social mentions

  4. A fast, bloat-free comments system to foster discussion on your website
    Pricing:
    • Open Source
    If you don’t mind paying, it may be worth taking a look at other options like Commento or FastComments. Unfortunately there doesn't seem to be anything on the market that lets you heavily customise the design to suit your needs. The closest may be Hyvor which does provide a wide variety of appearance settings. Their system starts at $5 a month for 100k monthly pageviews.

    #Social Networks #Project Management #Commenting Service 10 social mentions

Discuss: How to add comments to your Gatsby blog

Log in or Post with