A lightweight, open source, tracking-free comment engine alternative to Disqus
GitHub - adtac/commento: A lightweight, open source, tracking-free comment engine alternative to Disqus
41
100+
5
8
1
1
details
Share on
Facebook,
Twitter or
Google+
An open source, lightweight, and tracking-free comment engine.
It's really simple to embed a Commento section to your webpage. A trivial page would look like:
<html> <body> <script src="http://0.0.0.0:8080/assets/commento.min.js"></script> </body> <script> Commento.init({ serverUrl: "http://0.0.0.0:8080" }) </script> <div id="commento"> </div> </html>
And that's it! Source the client-side script, add a div
called commento
(which will contain the comments) and initialize Commento with your server. The client-side script does all the hard work of building the markup and loading the CSS. The assets themselves (JavaScript and CSS) as served by the go application.