Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Svgo | 19,611 | 281,763 | 4,005 | a day ago | 95 | November 18, 2022 | 300 | mit | JavaScript | |
⚙️ Node.js tool for optimizing SVG files | ||||||||||
Egg | 18,631 | 1,717 | 2,191 | a month ago | 166 | August 01, 2023 | 300 | mit | JavaScript | |
🥚 Born to build better enterprise frameworks and apps with Node.js & Koa | ||||||||||
Asdf | 18,543 | a day ago | 145 | mit | Shell | |||||
Extendable version manager with support for Ruby, Node.js, Elixir, Erlang & more | ||||||||||
Oclif | 8,555 | 34 | 1,190 | 9 hours ago | 309 | August 04, 2023 | 86 | mit | TypeScript | |
CLI for generating, building, and releasing oclif CLIs. Built by Salesforce. | ||||||||||
Chai | 7,942 | 320,859 | 171,041 | a month ago | 83 | July 26, 2023 | 106 | mit | JavaScript | |
BDD / TDD assertion framework for node.js and the browser that can be paired with any testing framework. | ||||||||||
Dillinger | 7,664 | 4 months ago | 109 | mit | HTML | |||||
The last Markdown editor, ever. | ||||||||||
Tiddlywiki5 | 7,473 | 43 | 17 | 9 hours ago | 65 | July 01, 2023 | 1,263 | other | JavaScript | |
A self-contained JavaScript wiki for the browser, Node.js, AWS Lambda etc. | ||||||||||
Berry | 6,606 | 6 | 320 | 10 hours ago | 128 | July 02, 2023 | 609 | bsd-2-clause | TypeScript | |
📦🐈 Active development trunk for Yarn ⚒ | ||||||||||
Nlp.js | 5,784 | 1 | 91 | 24 days ago | 40 | January 12, 2023 | 100 | mit | JavaScript | |
An NLP library for building bots, with entity extraction, sentiment analysis, automatic language identify, and so more | ||||||||||
Remarkable | 5,561 | 7,473 | 636 | a month ago | 23 | May 25, 2020 | 131 | mit | JavaScript | |
Markdown parser, done right. Commonmark support, extensions, syntax plugins, high speed - all in one. Gulp and metalsmith plugins available. Used by Facebook, Docusaurus and many others! Use https://github.com/breakdance/breakdance for HTML-to-markdown conversion. Use https://github.com/jonschlinkert/markdown-toc to generate a table of contents. |
Schnack is a simple Disqus-like drop-in commenting system written in JavaScript.
Features:
Note: If you are updating Schnack from a 0.x version check out the separate upgrade instructions.
This is the fastest way to setup schnack.
Requirements:
Create a new folder for schnack and change into it:
mkdir schnack
cd schnack
npm init schnack
if there is no schnack.json
in this folder, the init script copied over the default config and ask you if you want to configure your server interactively.
alternatively you can just edit the config file according to configuration section:
vim schnack.json # or open with any editor of your choice
Finally, run npm init schnack
again to finish installation:
npm init schnack
Run the server:
npm start
If you want to try out Schnack on localhost (without authentication), run
npm start -- --dev
Embed in your HTML page:
<div class="comments-go-here"></div>
<script
src="https://comments.example.com/embed.js"
data-schnack-slug="post-slug"
data-schnack-target=".comments-go-here"
></script>
or initialize schnack programmatically:
<div class="comments-go-here"></div>
<script src="http://comments.example.com/client.js"></script>
<script>
new Schnack({
target: '.comments-go-here',
slug: 'post-slug',
host: 'http://comments.example.com'
});
</script>
You will find further information on the schnack page.
Authentication and notification providers can be added via plugins.
npm install @schnack/plugin-auth-github @schnack/plugin-auth-google @schnack/plugin-notify-slack
To enable the plugins you need to add them to the plugins
section of your schnack.json
:
{
// ...
"plugins": {
"auth-github": {
"client_id": "xxxxx",
"client_secret": "xxxxx"
},
"auth-google": {
"client_id": "xxxxx",
"client_secret": "xxxxx"
},
"notify-slack": {
"webhook_url": "xxxxx"
}
}
}
if you want to write your own plugins you need to install them and specify their package name in the schnack.json
. Otherwise Schnack would try to load as from @schnack/plugin-my-plugin
.
{
// ...
"plugins": {
"my-plugin": {
"pkg": "my-schnack-plugin",
// ...
}
}
}
Feel free to open a PR on schnack-plugins with your plugin if you want to add it to the "official" repository.
Schnack is yet another happy collaboration between Webkid and Gregor Aisch, with amazing contributions from:
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:
This is not a new idea, so there are a few projects that are doing almost the same thing:
If you want to run your Schnack server on https on localhost, add the following section to your schnack.json
:
{
"ssl": {
"certificate_path": "./certs/local.crt",
"certificate_key": "./certs/local.key"
}
}
To test changes on the embed.js
and client.js
templates you can open a local test server with minimal styles and by-passed authentication using
npm run dev
We're veIf you want to contribute additional plugins, check out the source code for the existing plugins first. We happily accept pull requests on schnack-plugins.
This project used Conventional Commits.