
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
Simple Elasticsearch query builder
$ npm install relastic
Relastic uses method chaining to construct Elasticsearch queries.
var Relastic = require('relastic')
var r = new Relastic()
r.query().match({title: 'thai chili'})
r.output()
// {
// query: {
// match: {
// title: 'thai chilies'
// }
// }
// }
This approach can be much simpler than constructing large ES queries when compared to explicitly defining and modifying complex objects.
r.filter()
.bool()
.must()
.term({type: 'chili pepper'})
.terms({spiciness: ['high', 'very high']})
.should()
.term({color: 'green'})
.term({size: 'small'})
r.output()
// {
// query: {},
// filter: {
// bool: {
// must: [
// {
// term: {
// type: 'chili pepper'
// }
// },
// {
// terms: {
// spiciness: ['high', 'very high']}
// }
// }
// ],
// should: [
// {
// term: {
// color: 'green'
// }
// },
// {
// term: {
// size: 'small'
// }
// }
// ]
// }
// }
// }
Relastic also allows construction of query objects progressively.
r.filteredQuery()
.query()
.match({ingredients: 'cayenne'})
r.filteredQuery()
.filter()
.term({type: 'soup'})
r.output()
// {
// query: {
// filtered: {
// query: {
// match: {
// ingredients: 'cayenne'
// }
// },
// filter: {
// term: {
// type: 'soup'
// }
// }
// }
// }
// }
Each invocation of a Relastic query constructor method returns a chainable instance of Relastic. The chain can be started anew at whatever point the final method invocation referred to.
var bool = r.filter().bool()
bool.must().term({color: 'green'})
bool.must_not().terms({spiciness: ['none', 'low', 'medium']})
r.output()
// {
// query: {},
// filter: {
// bool : {
// must: {
// term: {
// color: 'green'
// }
// },
// must_not: {
// terms: {
// spiciness: ['none', 'low', 'medium']
// }
// }
// }
// }
// }
FAQs
Elasticsearch query builder
The npm package relastic receives a total of 3 weekly downloads. As such, relastic popularity was classified as not popular.
We found that relastic demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.