1.0.3 • Published 10 years ago

amalgamatic-h5dcsched v1.0.3

Weekly downloads
15
License
-
Repository
github
Last release
10 years ago

Build Status

amalgamatic-h5dcsched

Amalgamatic plugin for the HTML5DevConf Schedule

Installation

Install amalgamatic and this plugin via npm:

npm install amalgamatic amalgamatic-h5dcsched

Usage

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

// 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) {
        console.dir(err);
    } else {
        results.forEach(function (result) {
            console.log(result.name);
            console.dir(result.data);
        });
    }
};

amalgamatic.search({}, callback);
1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago