3.1.6 • Published 8 years ago

amalgamatic-millennium v3.1.6

Weekly downloads
39
License
MIT
Repository
github
Last release
8 years ago

Build Status

amalgamatic-millennium

Amalgamatic plugin for Millennium

Installation

Install amalgamatic and this plugin via npm:

npm install amalgamatic amalgamatic-millennium

Usage

var amalgamatic = require('amalgamatic'),
    millennium = require('amalgamatic-millennium');

// Set the URL to point to your Millennium advanced search page
millennium.setOptions({url: 'http://ucsfcat.library.ucsf.edu/search/X'});

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

//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({searchTerm: 'medicine'}, callback);
3.1.6

8 years ago

3.1.5

9 years ago

3.1.4

9 years ago

3.1.3

10 years ago

3.1.2

10 years ago

3.1.1

10 years ago

3.1.0

10 years ago

3.0.2

10 years ago

3.0.1

10 years ago

3.0.0

10 years ago

2.0.0

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago