/schnack

🗣️ Simple node app for Disqus-like drop-in commenting on static websites

Primary LanguageJavaScriptOtherNOASSERTION

schnack.js

schnack.js is a simple node app for Disqus-like drop-in commenting on static websites.

Related projects

This is not a new idea, so there are a few projects that are doing almost the same thing:

Server requirements

Node 6+ and SQLite.

Minimal setup drop-in

The app runs as a node server that provides a JS file to be dropped into any website.

<div class="comments-go-here"></div>
<script src="//comments.yoursite.com/embed.js"
    data-schnack-slug="post-slug"
    data-schnack-target=".comments-go-here">
</script>

Server installation

Run:

npm install

Then copy config.tpl.json to config.json and edit your config. Create web-push keys and finally run the server with:

npm run server

Run with Docker

You can build a Docker image for the schnack server running:

docker build -t gka/schnack .

The image will contain everything in the project folder and can be started with:

docker run -p 3000:3000 -d gka/schnack

In order to be able to edit your config file and your SQL database files, you may want to share the project folder with the docker container:

docker run -p 3000:3000 -v $(pwd):/usr/src/app -d gka/schnack

Authentication

So far, users who want to post a comment need to authenticate using Twitter or Github. More auth providers can be added easily, thanks to Passport.js.

Data storage

Comments are stored in a SQLite database. For a normal sized blog this should last a couple of decades.

Comment approval

New comments need to be approved by the site admin, who can see and approve or reject them right in the comments section. To save some work, admins can "trust" certain authors so their comments are approved automatically.

Push notifications for new comments

Schnack.js provides two mechanisms to notify you about new comments. The old-school way is an RSS feed that you can use in services like IFTTT. Alternatively you can hook into a push notification service like Pushover to get notifications right to your phone.

New: web-push notifications

If you want you can be notified about new comments using web-push notifications. To configure this you need to do 3 things:

  1. Generate the vapid-keys using node_modules/.bin/web-push generate-vapid-keys and copy them into your config.json.
  2. Copy the sw.js into your website's root path.
  3. Next time you log into your site you will be asked to allow notifications.

Semi-automatically trust your friends

You can provide a list of user IDs of people you trust for each authentication provider. For instance, you could use the Twitter API to get a list of all the people you follow and drop that into the config.

"trust": {
	"twitter": [
		"916586732845400064",
		"902094599329591296"
	],
	"github": [
		1639, 2931, 2946, 3602, 4933
	]
}

Import comments from disqus

You can import comments from your disqus XML export as following:

npm run import -- disqus.xml

Who is behind Schnack?

Schnack is yet another happy collaboration between Webkid and Gregor Aisch.

Who is using Schnack?

Schnack will never track who is using it, so we don't know! If you are a Schnack user, let us know and we'll add your website here. So far Schnack is being used on: