
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
ejson-shell-parser
Advanced tools
Parses valid MongoDB EJSON Shell queries. This library does not validate that these queries are correct. It's focus is on parsing untrusted input. You may wish to use something like https://github.com/mongodb-js/mongodb-language-model to achieve this.
Parses valid MongoDB EJSON Shell queries. This library does not validate that these queries are correct. It's focus is on parsing untrusted input. You may wish to use something like https://github.com/mongodb-js/mongodb-language-model to achieve this.
This library creates an AST from the proposed input, and then traverses this AST to check if it looks like a valid MongoDB query. If it does, the library will then evaluate the code to produce the parsed query.
This library currently supports three different modes for parsing queries:
strict: [default] Disallows comments and calling methods
import parse from 'ejson-shell-parser';
const query = parse(
`{
_id: ObjectID("132323"),
simpleCalc: 6,
date: new Date(1578974885017)
}`,
{ mode: 'strict' }
);
/*
query = { _id: ObjectID("132323"), simpleCalc: 6, date: Date('1578974885017') }
*/
weak: Disallows comments, allows calling methods
import parse from 'ejson-shell-parser';
const query = parse(
`{
_id: ObjectID("132323"),
simpleCalc: Math.max(1,2,3) * Math.min(4,3,2)
}`,
{ mode: 'weak' }
);
/*
query = { _id: ObjectID("132323"), simpleCalc: 6 }
*/
loose: Supports calling methods on Math, Date and ISODate, allows comments
import parse from 'ejson-shell-parser';
const query = parse(
`{
_id: ObjectID("132323"), // a helpful comment
simpleCalc: Math.max(1,2,3) * Math.min(4,3,2)
}`,
{ mode: 'loose' }
);
/*
query = { _id: ObjectID("132323"), simpleCalc: 6 }
*/
The options object passed into parse has the following parameters:
{
mode: ('loose' || 'weak' || 'strict') // Will assign (allowMethods & allowComments) for you
allowMethods: true, // Allow function calls, ie Date.now(), Math.Max(), (new Date()).getFullYear()
allowComments: true, // Allow comments (// and /* */)
}
The flags can be set to override the default value from a given mode, ie:
{
mode: 'strict',
allowComments: true
}
This options object will disallow method calls, but will allow comments
FAQs
Parses valid MongoDB EJSON Shell queries. This library does not validate that these queries are correct. It's focus is on parsing untrusted input. You may wish to use something like https://github.com/mongodb-js/mongodb-language-model to achieve this.
The npm package ejson-shell-parser receives a total of 1,845 weekly downloads. As such, ejson-shell-parser popularity was classified as popular.
We found that ejson-shell-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 34 open source maintainers 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.