This thread is for sharing and discussing implementation (and moderation?) of commenting systems / services for personal websites. This is in contrast to a few threads discussing commenting etiquette, culture, preferences, etc. This thread is meant to be more technical / “dry” / resource-focused.
I’ll begin: For example, on my site I’ve utilized FastComments:
I’ve paid a $1 a month for a while now, and while I’ve been satisfied with it (and its convenience), I have been looking towards changing to something different.
I’ve been eyeing HTML Commentbox for a while now. My website is hosted on a free neocities account so my options are fairly limited at the moment, and HCB is the most customizable option I could find, since it lets you properly style the CSS of the comment widget.
My one issue is that to requires a Google account to set up. I’m trying to rely less on Google, and my own website is the last place that I’d want to have a Google dependency on. Yet HTML Commentbox is kind of my only really good option out there.
I’ve been considering making a burner Gmail that I use only for this service and nothing else.
When I first started my blog I had Disqus enabled. Part of the Zonelets set up is written specifically for Disqus. I didn’t like it, though, and ditched it. People can email me or find my on Neocities/Discord/Discourse. But - I still think sometimes about having a comment system. I can’t vouch for any of these but here are some options I’ve found:
I’ve shared my solution a lot, so apologies for reposting it again! My comment system I made from scratch with 11ty, people sign in with IndieAuth. I recently added the ability to reply to comments and make threads!
The biggest issue is that the entire site requires a rebuild after each comment, so it takes about a minute for new comments to appear, and sometimes that leads to accidental double-posting duplicate comments. Also sometimes certain characters break and I keep all comments in a single JSON file which is getting a little big. All things for future Brennan to worry about :D
I use cbox and atabook for a comment section of sorts. Used to use chattable, then changed once it went down, been too lazy to put it back to chattable again.
Having anonymous comments enabled is very important to me so I use Remark42 (requires JS). Please let me know if there are other anon friendly options out there.
Did you find a solution yet? I know it hasn’t been long but I’ve been looking for a comment section solution everywhere lol. I’m not too keen on using google docs for my comments…
I’ve realized that part is actually okay, it only gets large depending on the amount of comments (and scales linearly of course).
Even with the amount of comments I have now, it doesn’t affect build time or anything. You just need to ctrl+f to find something instead of scrolling through.
If I were to have x10 or x100 times the amount of comments, then I’d need to figure out a solution to split it up. But I’m fine as-is currently.