1.0.0 • Published 9 years ago

amalgamatic-cenic2015 v1.0.0

Weekly downloads
7
License
-
Repository
github
Last release
9 years ago

Build Status

amalgamatic-cenic2015

Amalgamatic plugin for the CENIC 2015 conference schedule

Installation

Install amalgamatic and this plugin via npm:

npm install amalgamatic amalgamatic-cenic2015

Usage

var amalgamatic = require('amalgamatic'),
    sched = require('amalgamatic-cenic2015');

// Add this plugin to your Amalgamatic instance along with any other plugins you've configured.
amalgamatic.add('sched', sched);

//Use it!
var callback = function (err, results) {
    if (err) {
        return console.log(err);
    }

    results.forEach(function (result) {
        console.log(result.name);
        console.log(result.data);
    });
};

amalgamatic.search({}, callback);