Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
mongodb-language-model
Advanced tools
Parses MongoDB query language and returns an abstract syntax tree
Parses a MongoDB query and creates an abstract syntax tree (AST) with part of speech tagging. Currently, only strict extended json syntax is supported (which means keys have to be surrounded by double quotes and values have to match the strict syntax of the extended-json format.);
The main module exposes two functions: accepts(queryStr)
and parse(queryStr)
.
accepts(queryStr)
The accepts(queryStr)
function takes a query string and returns true
if the
string is a valid MongoDB query, false
otherwise.
Example:
var accepts = require('mongodb-language-model').accepts;
var assert = require('assert');
assert.ok(accepts('{"foo": 1}'));
assert.ok(accepts('{"age": {"$gt": 35}}'));
assert.ok(accepts('{"$or": [{"email": {"$exists": true}}, {"phone": {"$exists": true}}]}'));
assert.equal(accepts('{"$invalid": "key"}'), false);
parse(queryStr)
The parse(queryStr)
function takes a query string and returns an abstract
syntax tree (AST) as a javascript object, if the query is valid. If the
query is not valid, the function throws a pegjs.SyntaxError
with a message
explaining the failure.
Example:
var parse = require('mongodb-language-model').parse;
var assert = require('assert');
var pegjs = require('pegjs');
var ast = parse('{"foo": "bar"}');
assert.deepEqual(ast, {
'pos': 'expression',
'clauses': [
{
'pos': 'leaf-clause',
'key': 'foo',
'value': {
'pos': 'leaf-value',
'value': 'bar'
}
}
]
});
This is the hierarchical model that is created when a query is parsed:
npm install --save mongodb-language-model
npm test
FAQs
Parses MongoDB query language and returns an abstract syntax tree
The npm package mongodb-language-model receives a total of 4,777 weekly downloads. As such, mongodb-language-model popularity was classified as popular.
We found that mongodb-language-model demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 28 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.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.