
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
mongo-simple-aggregation-builder
Advanced tools
A Node.js typescript implementation of mongodb aggregation query builder
A Node.js typescript implementation of mongodb aggregation query builder
Instead of creating huge static query objects, aggregation queries can be constructed in a flexible, imperative manner using this builder.
Mongo-simple-aggregation-builder comes with TypeScripdefinitions experience.
What's Included:
npm install mongo-simple-aggregation-builder --save
import { Builder, FacetBuilder, GroupBuilder, MatchBuilder, ProjectBuilder } from 'mongo-simple-aggregation-builder'
const matchStage = new MatchBuilder().match('field_name', 'value');
const projectStage = new ProjectBuilder()
.includeField('field_name')
.addField('calculated_field', '$another_field');
const groupStage = new GroupBuilder('_id')
.count('total')
.sum('aggregated_field', 'calculated_field');
const pipeline = new Builder()
.match(matchStage)
.project(projectStage)
.group(groupStage)
.build();
const response = await db.<collection>.aggregate(pipeline);
test('project Builder', () => {
const expected = {
field_name: 1,
calculated_field: '$another_field',
remove_field: 0,
};
const recieved = new ProjectBuilder()
.includeField('field_name')
.addField('calculated_field', '$another_field')
.excludeField('remove_field');
expect(recieved).toEqual(expected);
});
test('group Builder', () => {
const expected = {
_id: 'groupName',
aggregated_field: { $sum: '$aggregated_val' },
};
const recieved = new GroupBuilder('groupName').sum('aggregated_field', 'aggregated_val');
expect(recieved).toEqual(expected);
});
test('filter and return first from db array', () => {
const expected = {
mysql_db: {
$first: {
$filter: { input: '$db_list', as: 'db', cond: { $eq: ['$$db.name', 'mysql'] } },
},
},
};
const mysqlDbField = new Comparison(Operator.EQ, '$$db.name', 'mysql');
const filterSourcesArray = new Filter('$db_list', 'db', mysqlDbField);
const received = new ProjectBuilder().addField('mysql_db', filterSourcesArray.first());
expect(JSON.stringify(received)).toEqual(JSON.stringify(expected));
});
FAQs
A Node.js typescript implementation of mongodb aggregation query builder
We found that mongo-simple-aggregation-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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.