I had this static website and wanted to add a comment system to it. After searching for a while, I couldn't find a free solution that fit my needs. So I thought, "Why not build one myself and make it available for everyone?"
And here we are! A simple, lightweight comment system that just works.
Add this to your HTML where you want comments to appear:
<!-- Add the comment section -->
<div id="gdb-comments"></div>
<!-- Add the script -->
<script src="https://auth.goygoyengine.com/api/easycomment/v1/embed.js"></script>
<script>
    GDBComments.init({
        container: '#gdb-comments',
        theme: 'light' // or 'dark'
    });
</script>
That's it! Your comment section is now live. 🎉
Want more control? Use our API to build your own UI. Check out our framework-specific components:
GDBComments.init({
    container: '#gdb-comments',     // Required: Container selector
    theme: 'light',                // Optional: 'light' or 'dark'
    defaultUsername: 'Guest',       // Optional: Default anonymous name
    allowReplies: true,            // Optional: Enable/disable replies
    maxComments: 50                // Optional: Comments per page
});
Override these classes to match your site's design:
.gdb-comments-container {}  /* Main container */
.gdb-comment {}            /* Individual comment */
.gdb-comment.reply {}      /* Reply comment */
.gdb-comment-input {}      /* Comment text area */
Using GDB Easy Comment System? Let us know by:
We'd love to feature your site here!
Feel free to: