Socket
Socket
Sign inDemoInstall

strongman

Package Overview
Dependencies
1
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    strongman

a node module for composing elasticsearch queries


Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Install size
2.03 MB
Created
Weekly downloads
 

Readme

Source

strongman

a node module for composing elasticsearch queries, inspired by bodybuilder.js

note: this is still a work in progress and is not suitable for use in production

Installing

$ npm install --save strongman

Getting Started

import { expect } from 'chai'
import { bool, term, exists } from 'strongman'

const query = bool().filter(
  term('published', true),
  bool().should(
    term('whitelist', 'foo'),
    bool().must(
      exists('blacklist')
    ).mustNot(
      term('blacklist', 'foo')
    )
  ).minimumShouldMatch(1)
)

expect(query.get()).to.deep.equal({
  bool: {
    filter: [{
      term: {
        published: true
      }
    }, {
      bool: {
        should: [{
          term: {
            whitelist: 'foo'
          }
        }, {
          bool: {
            must: {
              exists: {
                field: 'blacklist'
              }
            },
            must_not: {
              term: {
                blacklist: 'foo'
              }
            }
          }
        }],
        minimum_should_match: 1
      }
    }]
  }
})

Queries

coming soon*

Testing

$ npm test

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

License

Copyright (c) 2017 Chris Ludden. Licensed under the MIT license.

Keywords

FAQs

Last updated on 14 Feb 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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc