
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
lucene-query-string-builder
Advanced tools
Easily build your lucene string queries using small and pure functions.
Imagine having an API that leverages lucene for performing queries on the (indexed) database. In that case you might want to generate lucene query strings on the client/front end.
The usage section shows how you can leverage this lib for your purposes.
npm install lucene-query-string-builder --save
Let's see how you can use lucene query string builder to define lucene query strings with simple JavaScript functions.
Assuming that the lucene global variable contains the lucene functions. This would be the default when loaded into a browser.
var findUserLuceneQueryString = lucene.builder(function(data){
// just to make the example more readable;
var _ = lucene;
return _.group(_.and(
_.field('eye-color', _.term(data.eye.color)),
_.field('age', _.range(data.age.min, data.age.max))
));
});
var luceneQueryString = findUserLuceneQueryString({
eye: { color: 'brown'},
age: {
min: 10,
max: 20
}
});
luceneQueryString === '( eye-color: "brown" AND age:{ 10 TO 20 } )' // => true
The functions are based on the lucene specifications found here: https://lucene.apache.org/core/2_9_4/queryparsersyntax.html#Terms
var _ = lucene;
/***
* terms or term
*/
_.term('hello'); // => '"hello"'
_.terms('hello world'); // => '"hello world"'
/***
* field
*/
_.field('hello', _.term('world')); // => 'hello: "world"'
/***
* or/and/not
*
* These functions are variadic and all work the same way. This example only
shows the or but ot works similar with and and not
*/
_.or(_.term('hello'), _.term('world')); // => '"hello" OR "world"'
_.or(_.term('hello'), _.term('you'), _.term('world')); // => '"hello" OR "you" OR "world"'
/***
* group
*
* Is a variadic function too
*/
_.group(_.term('hello'), _.term('you'), _.term('world')); // => '( "hello" "you" "world" )'
/***
* range
*
* Takes two strings and 2 booleans.
*/
/* combined with the field function to query for ages between 10 and 20 */
_.field('age', _.range(10, 20)); // => 'age: { 10 TO 20 }'
/***
* fuzzy
*/
_.fuzzy(_.term('hello'), 0.2); // => '"hello"~0.2'
/***
* proximity
*/
_.proximity("a", "c", 2); // => '"a b"'~2
/***
* required
*/
_.required(_.term('required')); // => '+"required"'
set -eo pipefail
{
npm i
npm prune
} > /dev/null
npx standard --fix
npx nyc npm t
> lucene-query-string-builder@1.0.6 test
> tape ./test/index.js
TAP version 13
# builder
ok 1 should be strictly equal
# range
ok 2 should be strictly equal
ok 3 should be strictly equal
ok 4 should be strictly equal
ok 5 should be strictly equal
# group
ok 6 should be strictly equal
# term
ok 7 should be strictly equal
ok 8 should be strictly equal
# fuzzy
ok 9 should throw
ok 10 should be strictly equal
ok 11 should be strictly equal
ok 12 should be strictly equal
ok 13 should be strictly equal
ok 14 should be strictly equal
ok 15 should be strictly equal
# proximity
ok 16 should be strictly equal
ok 17 should throw
ok 18 should throw
ok 19 should throw
ok 20 should throw
ok 21 should throw
# or/and/not
ok 22 should be strictly equal
ok 23 should be strictly equal
ok 24 should be strictly equal
ok 25 should be strictly equal
ok 26 should be strictly equal
ok 27 should be strictly equal
1..27
# tests 27
# pass 27
# ok
----------|---------|----------|---------|---------|-------------------
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
----------|---------|----------|---------|---------|-------------------
All files | 90.32 | 94.44 | 88.24 | 90.91 |
index.js | 90.32 | 94.44 | 88.24 | 90.91 | 69-72,165-167
----------|---------|----------|---------|---------|-------------------
I have not gotten the chance to use this lib in my own projects. Please share your thoughts, issues and improvements.
npm run-script setup
When performing pull request make sure to not add the dist files. This is left to the maintainers(s) of the library. They are responsible to version and avoid code breakages.
You can perform your own build with npm run-script
build to make a lucine.js and
a lucine.min.js
notice
I am currently not using this repository in any of my projects. Therefore I am looking for people that are able to make LQSB more useful for them and others.
The MIT License (MIT)
FAQs
Build Lucene queries by defining lucene query builders
The npm package lucene-query-string-builder receives a total of 436 weekly downloads. As such, lucene-query-string-builder popularity was classified as not popular.
We found that lucene-query-string-builder 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.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.