Unofficial Feathers plugin service for Algolia
npm install feathers-algolia --save
Please refer to the Algolia Docs for options that can be passed.
The following services are supported and map to the appropriate Stripe resource:
Indexing
ManageIndices
Here's an example of a Feathers server that uses coinapi
.
const feathers = require("@feathersjs/feathers");
const plugin = require("feathers-coinapi");
// Provide Algolia search credentials
const algoliaCredentials = {
app_id: 'YOUR_APP_ID',
api_key: 'YOUR_API_KEY'
}
// Initialize the application
const app = feathers();
// Initialize the plugin with your Algolia credentials
app.configure(plugin(algoliaCredentials));
Copyright (c) 2019
Licensed under the MIT license.