Sudhanshu Gaur
Sudhanshu Gaur

Reputation: 7684

Mongoose with ElasticSearch in node.js

I am using mongoDB in node.js with mongoose now I want to use ElasticSearch. Now can anyone please tell me would it be better to use mongoosastic, an npm module for both mongoose and ElasticSearch, or should I install ElasticSearch separately?

Upvotes: 2

Views: 3713

Answers (1)

bkan
bkan

Reputation: 1183

Since you are already using mongoose, you should use mongoosastic.

Mongoosastic already depends on the ElasticSearch Module to perform ElasticSearch operations

Upvotes: 2

Related Questions