
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
elastic-query-creator
Advanced tools
An application where you can create Elasticsearch queries using Typescript.
The elastic-query-creator
package is a TypeScript library that provides a convenient way to construct complex queries for Elasticsearch.
You can install the elastic-query-creator
package using npm:
npm i elastic-query-creator
To use the elastic-query-creator library, follow the steps below:
import { QueryBuilder } from 'elastic-query-creator';
const queryBuilder = new QueryBuilder();
queryBuilder
.must({ term: { field: 'value' } })
.filter({ range: { field: { gte: 10, lte: 20 } } })
.sort('field', 'asc')
.size(10);
const query = queryBuilder.build();
The query object can now be used in your Elasticsearch operations.
Here are some examples to demonstrate the usage of the elastic-query-creator library:
import { QueryBuilder } from 'elastic-query-creator';
const queryBuilder = new QueryBuilder();
// Example 1: Simple term query
queryBuilder.must({ term: { field: 'value' } });
// Example 2: Range query
queryBuilder.filter({ range: { field: { gte: 10, lte: 20 } } });
// Example 3: Sorting
queryBuilder.sort('field', 'asc');
// Example 4: Setting the result size
queryBuilder.size(10);
const query = queryBuilder.build();
import { QueryBuilder } from 'elastic-query-creator';
// Create an instance of the QueryBuilder class
const queryBuilder = new QueryBuilder();
// Add query conditions
queryBuilder
.must({ term: { field1: 'value1' } })
.filter({ range: { field2: { gte: 10, lte: 20 } } })
.should({ match: { field3: 'value3' } })
.mustNot({ exists: { field4: true } })
.term('field5', 'value5')
.range('field6', { gte: 30, lte: 40 })
.match('field7', 'value7')
.matchPhrase('field8', 'value8')
.exists('field9')
.sort('field10', 'asc')
.from(0)
.size(10);
// Build the query object
const query = queryBuilder.build();
Contributions are welcome! If you have any ideas, suggestions, or bug reports, please open an issue or submit a pull request on the GitHub repository.
FAQs
An application where you can create Elasticsearch queries using Typescript.
We found that elastic-query-creator 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.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.