<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Kucos</title>
    <description>The latest articles on DEV Community by Kucos (@kucosjs).</description>
    <link>https://dev.to/kucosjs</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Forganization%2Fprofile_image%2F2676%2F7ea245b1-dd54-4095-ac3e-27c7a663f668.png</url>
      <title>DEV Community: Kucos</title>
      <link>https://dev.to/kucosjs</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kucosjs"/>
    <language>en</language>
    <item>
      <title>A beautiful open source comments for your blog</title>
      <dc:creator>Sebastian Korotkiewicz</dc:creator>
      <pubDate>Mon, 13 Jul 2020 21:42:36 +0000</pubDate>
      <link>https://dev.to/kucosjs/a-beautiful-open-source-comments-for-your-blog-2j7h</link>
      <guid>https://dev.to/kucosjs/a-beautiful-open-source-comments-for-your-blog-2j7h</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6FM8-NaJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/zyzuyab7yeuojxdfp5oj.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6FM8-NaJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/zyzuyab7yeuojxdfp5oj.gif" alt="Kucos"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You don't need a server to host your comment system, you can easily host Kucos on &lt;a href="https://vercel.com/"&gt;Vercel&lt;/a&gt; and database on Mongo Atlas where 500mb is for free (for comments it is a lot space :)).&lt;/p&gt;

&lt;p&gt;Kucos is focused on complete user privacy and data security, that' s why commenting is completely anonymous, no account is needed.&lt;/p&gt;

&lt;p&gt;Kucos is written entirely in JavaScript, backend in &lt;em&gt;NodeJS&lt;/em&gt; with &lt;em&gt;MongoDB (Mongoose)&lt;/em&gt; and frontend in pure JS. Source of Kucos can be found on GitHub &lt;a href="https://github.com/kucosjs/kucos"&gt;kucosjs/kucos&lt;/a&gt;, I invite you to test the demo on &lt;a href="https://kucos.js.org"&gt;this page&lt;/a&gt;, also I'm happy to see pull requests with your fixes or new features :)&lt;/p&gt;

&lt;p&gt;A simple &lt;em&gt;Markdown&lt;/em&gt; is also available, &lt;a href="https://kucos.js.org/markdown.html"&gt;here&lt;/a&gt; you can check out the available Markdown.&lt;/p&gt;

&lt;h2&gt;
  
  
  Available functions:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Writing new comments&lt;/li&gt;
&lt;li&gt;Reply to comments&lt;/li&gt;
&lt;li&gt;Fast quote comments (select text and click &lt;em&gt;Reply&lt;/em&gt;)&lt;/li&gt;
&lt;li&gt;Hidding/showing children comments&lt;/li&gt;
&lt;li&gt;Voting on comments&lt;/li&gt;
&lt;li&gt;Markdown text formatting&lt;/li&gt;
&lt;li&gt;Adding Kudos under post&lt;/li&gt;
&lt;li&gt;Edit own comments within an hour&lt;/li&gt;
&lt;li&gt;Simple moderation of comments by the website owner &lt;a href="https://i.imgur.com/Zyt0Jxu.gif"&gt;Screenshot&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Checking whether a comment is spam. (Akismet)&lt;/li&gt;
&lt;li&gt;Fast and lightweight code highlighting in comments&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Add Kucos to your website
&lt;/h2&gt;

&lt;p&gt;To add Kucos to your website you only need to add two additional lines.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;div id="comments"&amp;gt;&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;br&gt;
&lt;code&gt;&amp;lt;script src="http://localhost:3000/min/kucos.min.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;p&gt;Installation of Kucos is very simple, you need to download the source code then rename the &lt;em&gt;config.example.js&lt;/em&gt; file to &lt;em&gt;config.js&lt;/em&gt; and fill it in correctly.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ git clone https://github.com/kucosjs/kucos&lt;/code&gt;&lt;br&gt;
&lt;code&gt;$ mv config.example.js config.js&lt;/code&gt;&lt;br&gt;
&lt;code&gt;$ vim config.js&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Now all you have to do is &lt;em&gt;npm install&lt;/em&gt;, run the command &lt;em&gt;gulp&lt;/em&gt; and &lt;em&gt;node index.js&lt;/em&gt; to start the server.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ npm install&lt;/code&gt;&lt;br&gt;
&lt;code&gt;$ gulp&lt;/code&gt;&lt;br&gt;
&lt;code&gt;$ node index.js&lt;/code&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>node</category>
      <category>serverless</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
