5.0.4 • Published 8 years ago

amalgamatic-sfx v5.0.4

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

Build Status

amalgamatic-sfx

Amalgamatic plugin for SFX

Installation

Install amalgamatic and this plugin via npm:

npm install amalgamatic amalgamatic-sfx

Usage

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

// Set the URL to point to your SFX A-Z list
sfx.setOptions({url: 'http://ucelinks.cdlib.org:8888/sfx_ucsf/az'});

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

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

8 years ago

5.0.3

10 years ago

5.0.2

10 years ago

5.0.1

10 years ago

5.0.0

10 years ago

4.0.0

10 years ago

3.1.4

10 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.0

10 years ago

2.0.0

10 years ago

1.0.0

10 years ago