@selego/mongoose-elastic

1.7.1 • Public • Published

Mongoose Elastic

Mongoose Elastic is a mongoose plugin that can automatically index your models into elasticsearch.

Version Downloads/week License

Usage

Install the package.

npm i @selego/mongoose-elastic

Setup your mongoose model to use the plugin.

const { Client } = require("@elastic/elasticsearch");
const mongoose = require("mongoose");
const mongooseElastic = require("@selego/mongoose-elastic");

const client = new Client({ node: "http://localhost:9200" });

const User = new mongoose.Schema({
  name: String,
  email: String,
  city: String,
});

User.plugin(mongooseElastic(client), "user");

module.exports = mongoose.model("user", User);

Then, use your mongoose model as usual:

const user = new User({ name: "Raph" });
user.save().then(() => {
  console.log("user saved on mongo, elastic sync is on its way");
});

Why

There are some competitors, still, most of them are abandonned or suffering from their legacy.

Dependents (0)

Package Sidebar

Install

npm i @selego/mongoose-elastic

Weekly Downloads

739

Version

1.7.1

License

MIT

Unpacked Size

12.8 kB

Total Files

5

Last publish

Collaborators

  • michaelgarcia
  • naustra
  • naei
  • gauthier-th
  • rap2hpoutre