mongoose-algolia-index
v1.0.0-beta.1
Published
Mongoose plugin to automatically index newly created documents for Algolia
Downloads
7
Maintainers
Readme
mongoose-algolia-index
Mongoose plugin to automatically index newly created documents for Algolia.
Installation
npm install mongoose-algolia-index --save
Usage
const mongoose = require('mongoose');
const algoliaPlugin = require('mongoose-algolia-index');
let TestSchema = new mongoose.Schema({
name: String
});
TestSchema.plugin(algoliaPlugin, {
index: true,
schemaName: 'Test',
applicationId: '<your-application-id>',
apiKey: '<your-api-key>'
});
mongoose.model('Test', TestSchema);
Documentation
Read the documentation in DOCUMENTATION.
Contributing
Read the CONTRIBUTING guide for information.
License
Licensed under MIT. See LICENSE for more information.
Issues
Report a bug in issues.
Made with love in Dhaka, Bangladesh by Riyadh Al Nur