Socket
Socket
Sign inDemoInstall

elastic-builder

Package Overview
Dependencies
13
Maintainers
1
Versions
76
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    elastic-builder

A JavaScript implementation of the elasticsearch Query DSL


Version published
Weekly downloads
95K
increased by3.24%
Maintainers
1
Install size
1.59 MB
Created
Weekly downloads
 

Readme

Source

elastic-builder

A Node.js implementation of the Elasticsearch DSL for use with the official elasticsearch javascript client with builder syntax.

elastic-builder

Check out the API reference documentation.

Elasticsearch compatibility

elastic-builder was built for 5.x query DSL. However, the library should be usable with 2.x as well. For older versions of the DSL, you can try elastic.js or bodybuilder

Install

npm install elastic-builder --save

Usage

const bob = require('elastic-builder');

const requestBody = bob.requestBodySearch()
    .query(bob.matchQuery('message', 'this is a test'));

// OR

const requestBody = new bob.RequestBodySearch()
    .query(new bob.MatchQuery('message', 'this is a test'));

// bob.prettyPrint(requestBody)
// {
//   "query": {
//     "match": {
//       "message": "this is a test"
//     }
//   }
// }

// requestBody.toJSON()
// {
//   "query": {
//     "match": {
//       "message": "this is a test"
//     }
//   }
// }

For each class, MyClass, a utility function myClass has been provided which contructs the object for us without the need for new keyword.

REPL

Try it out on the command line using the node REPL:

# Start the repl
node ./node_modules/elastic-builder/repl.js
# The builder is available in the context variable bob
elastic-builder > bob.prettyPrint(bob.requestBodySearch().query(bob.matchQuery('message', 'this is a test')));

Motivation

Elasticsearch only provides a low level client for making requests. elastic.js was a relatively popular library for building the request search body. However, this project is not being maintained nor is the fork. There were several changes in the 5.0 release which make the older libraries unusable.

This library is a port of elastic.js to es6 with elasticsearch 5.3 compatibility.

API Reference

API reference can be accessed here - http://elastic-builder.js.org/docs.

API documentation was generated using documentation.js It is being hosted with help from this awesome project - https://github.com/js-org/dns.js.org

Documentation is a WIP. See roadmap.

Examples

// Bool query
const requestBody = bob.requestBodySearch()
    .query(
        bob.boolQuery()
            .must(bob.matchQuery('last_name', 'smith'))
            .filter(bob.rangeQuery('age').gt(30))
    )
// requestBody.toJSON()
// {
//     "query" : {
//         "bool" : {
//             "must" : {
//                 "match" : {
//                     "last_name" : "smith"
//                 }
//             },
//             "filter" : {
//                 "range" : {
//                     "age" : { "gt" : 30 }
//                 }
//             }
//         }
//     }
// }

// Multi Match Query
const requestBody = bob.requestBodySearch()
    .query(
        bob.multiMatchQuery(['title', 'body'], 'Quick brown fox')
            .type('best_fields')
            .tieBreaker(0.3)
            .minimumShouldMatch('30%')
    );
// requestBody.toJSON()
// {
//     "multi_match": {
//         "query": "Quick brown fox",
//         "type":  "best_fields",
//         "fields": [ "title", "body" ],
//         "tie_breaker": 0.3,
//         "minimum_should_match": "30%"
//     }
// }

// Aggregation
const requestBody = bob.requestBodySearch()
    .size(0)
    .agg(bob.termsAggregation('popular_colors', 'color'));
// requestBody.toJSON()
// {
//     "size" : 0,
//     "aggs" : {
//         "popular_colors" : {
//             "terms" : {
//               "field" : "color"
//             }
//         }
//     }
// }

// Nested Aggregation
const requestBody = bob.requestBodySearch()
    .size(0)
    .agg(
        bob.termsAggregation('colors', 'color')
            .agg(bob.avgAggregation('avg_price', 'price'))
            .agg(bob.termsAggregation('make', 'make'))
    );
// requestBody.toJSON()
// {
//    "size" : 0,
//    "aggs": {
//       "colors": {
//          "terms": {
//             "field": "color"
//          },
//          "aggs": {
//             "avg_price": {
//                "avg": {
//                   "field": "price"
//                }
//             },
//             "make": {
//                 "terms": {
//                     "field": "make"
//                 }
//             }
//          }
//       }
//    }
// }

// Sort
const requestBody = bob.requestBodySearch()
    .query(
        bob.boolQuery()
            .filter(bob.termQuery('message', 'test'))
    )
    .sort(bob.sort('timestamp', 'desc'))
    .sorts([
        bob.sort('channel', 'desc'),
        bob.sort('categories', 'desc'),
        // The order defaults to desc when sorting on the _score,
        // and defaults to asc when sorting on anything else.
        bob.sort('content'),
        bob.sort('price').order('desc').mode('avg')
    ]);
// requestBody.toJSON()
// {
//   "query": {
//     "bool": {
//       "filter": {
//         "term": { "message": "test" }
//       }
//     }
//   },
//   "sort": [
//     { "timestamp": { "order": "desc" } },
//     { "channel": { "order": "desc" } },
//     { "categories": { "order": "desc" } },
//     "content",
//     { "price": { "order": "desc", "mode": "avg" } }
//   ]
// }

// From / size
const requestBody = bob.requestBodySearch()
    .query(bob.matchAllQuery())
    .size(5)
    .from(10);
// requestBody.toJSON()
// {
//   "query": {
//     "match_all": {}
//   },
//   "size": 5,
//   "from": 10
// }

Validation

elastic-builder provides lightweight validation where ever possible:

$ node repl.js
elastic-builder > bob.multiMatchQuery().field('title').field('body').query('Quick brown fox').type('bwst_fields')
See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-multi-match-query.html
Got 'type' - bwst_fields
Error: The 'type' parameter should belong to Set {
  'best_fields',
  'most_fields',
  'cross_fields',
  'phrase',
  'phrase_prefix' }
    at MultiMatchQuery.type (E:\Projects\repos\elastic-builder\lib\queries\full-text-queries\multi-match-query.js:134:23)
    at repl:1:77
    at ContextifyScript.Script.runInContext (vm.js:35:29)
    at REPLServer.defaultEval (repl.js:342:29)
    at bound (domain.js:280:14)
    at REPLServer.runBound [as eval] (domain.js:293:12)
    at REPLServer.<anonymous> (repl.js:538:10)
    at emitOne (events.js:96:13)
    at REPLServer.emit (events.js:188:7)
    at REPLServer.Interface._onLine (readline.js:239:10)

Tests

Tests are being added. See roadmap.

For running whatever tests have been added:

npm test

Credits

elastic-builder is heavily inspired by elastic.js and the fork by Erwan Pigneul.

bodybuilder for documentation style, build setup, demo page.

License

MIT

Keywords

FAQs

Last updated on 20 Apr 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc