opinions

0.0.1 • Public • Published

opinions

static git-powered comment module for node

This module is intendet to build up services like Disqus. It doen’t do all the work for you. You still have to build a comment service around it. Git is used to keep track of the comments. This is only meant as a built in backup strategy.

Installation

npm install opinions

Usage

Here’s an example that uses JSML to store the comments into files.

var JSML = require('jsml');
var Opinions = require('opinions');
 
var op = new Opinions({
  'work-tree': __dirname,         // working directory
  'git-dir': __dirname + '/.git'  // git directory (usually .git)
});
 
// the functions in this array will be executed in parallel on
// each new comment
var tasks = [
  function (forFile, comment, options, callback) {
    fs.appendFile(forFile + '.jsml', JSML,
        JSML.stringify(comment, null, '  ') + '\n---\n',
        function (err) {
      callback(err, [ forFile + '.jsml' ]);
  }
];
 
// addComment(forFile, comment, tasks, callback)
op.addComment('article.html', {
  message: 'A simple comment',
  author:  'Paul',
  modified: '2012-07-09T17:24:14.446Z',
  website: 'https://vorb.de/'
}, tasks, function (err) {
  if (err)
    return console.error(err);
});

Bugs and Issues

If you encounter any bugs or issues, feel free to open an issue at github. New ideas and help on fixing bugs and improving the system are always welcome.

License

Copyright © 2012 Paul Vorbach

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.1
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.1
    0
  • 0.0.0
    0

Package Sidebar

Install

npm i opinions

Weekly Downloads

0

Version

0.0.1

License

none

Last publish

Collaborators

  • pvorb