
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);