Awesome
feathers-algolia
Unofficial Feathers plugin service for Algolia
Installation
npm install feathers-algolia --save
Documentation
Please refer to the Algolia Docs for options that can be passed.
Available Services
The following services are supported and map to the appropriate Stripe resource:
Indexing
ManageIndices
Complete Example
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));
License
Copyright (c) 2019
Licensed under the MIT license.