
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
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.
The npm package elastic-query-creator receives a total of 1 weekly downloads. As such, elastic-query-creator popularity was classified as not popular.
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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.