![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
amalgamatic
Advanced tools
Search all the things! Pluggable metasearch. Uses APIs when it can, scrapes otherwise, write your own plugins for things that don't already have them.
Amalgamatic is a pluggable metasearch/federated search tool. It let's you choose a series of sources to search and then search them.
Search all the things!
Install Amalgamatic and plugins with npm
. For example:
# npm install --save amalgamatic amalgamatic-sfx amalgamatic-pubmed
// Load Amalgamatic
var amalgamatic = require('amalgamatic');
// Load some plugins to search SFX and PubMed.
var sfx = require('amalgamatic-sfx');
var pubmed = require('amalgamatic-pubmed');
// Add the plugins to Amalgamatic.
amalgamatic.add('sfx', sfx);
amalgamatic.add('pubmed', pubmed);
var callback = function (err, results) {
if (err) {
console.dir(err);
} else {
results.forEach( function (result) {
console.log('\nCollection name: ' + result.name);
console.dir(result.data);
});
}
};
// Do a search!
amalgamatic.search({searchTerm: 'medicine'}, callback);
Add (register) a plugin for a collection.
name
: A string that will be used to identify the collection.plugin
: A plugin object.Execute a search query.
query
: An object optionally containing the following properties
searchTerm
: String containing the search term(s). Default is empty string which returns no results.collections
: Array of strings representing the plugins you wish to search. Default is to use all registered plugins.maxResults
: Integer representing the maximum number of results to return from each plugin. Use 0 or a negative number (or omit the property altogether) to return the default number of results from each plugin.pluginCallback
: A function to execute after each plugin returns a result. It is called with two parameters.
* error
: An Error object or null
if no error occurred.
results
: An object containing the results from the plugin.callback
: A function to execute after all plugins have returned results. It is called with two parameters.
* error
: An Error object or null
if no error occurred.
results
: An object containing all the results from all the plugins.If you want to use Amalgamatic in the browser, most plugins will work fine with Browserify but they may need to be run through a CORS proxy. Fortunately, we've set up a demo.
FAQs
Search all the things! Pluggable metasearch. Uses APIs when it can, scrapes otherwise, write your own plugins for things that don't already have them.
We found that amalgamatic demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.