
Research
/Security News
CanisterWorm: npm Publisher Compromise Deploys Backdoor Across 29+ Packages
The worm-enabled campaign hit @emilgroup and @teale.io, then used an ICP canister to deliver follow-on payloads.
@filtron/sql
Advanced tools
Filtron helper: generate safe, parameterized SQL WHERE clauses from filter expressions
Convert Filtron AST to parameterized SQL WHERE clauses.
npm install @filtron/sql
import { parse } from "@filtron/core";
import { toSQL } from "@filtron/sql";
const result = parse('age > 18 AND status = "active"');
if (result.success) {
const { sql, params } = toSQL(result.ast);
// sql: "(age > $1 AND status = $2)"
// params: [18, "active"]
await db.query(`SELECT * FROM users WHERE ${sql}`, params);
}
toSQL(ast, options?): SQLResultConverts a Filtron AST to a parameterized SQL WHERE clause.
Returns:
interface SQLResult {
sql: string; // The WHERE clause (without "WHERE" keyword)
params: unknown[]; // Parameter values in order
}
| Option | Type | Default | Description |
|---|---|---|---|
parameterStyle | "numbered" | "question" | "numbered" | Placeholder format |
fieldMapper | (field: string) => string | undefined | Transform field names to column names |
valueMapper | (value: unknown) => unknown | undefined | Transform values before parameterization |
startIndex | number | 1 | Starting index for numbered placeholders |
Numbered ($1, $2, ...) — PostgreSQL, CockroachDB:
const { sql, params } = toSQL(ast);
// sql: "(age > $1 AND status = $2)"
Question marks (?, ?, ...) — MariaDB, SQLite, DuckDB:
const { sql, params } = toSQL(ast, {
parameterStyle: "question",
});
// sql: "(age > ? AND status = ?)"
Custom field mapping:
const { sql, params } = toSQL(ast, {
fieldMapper: (field) => `users.${field}`,
});
// "age > 18" becomes "users.age > $1"
Table-qualified columns:
const { sql, params } = toSQL(ast, {
fieldMapper: (field) => `"${field}"`, // Quote column names
});
Start index (for combining queries):
const { sql, params } = toSQL(ast, {
startIndex: 3,
});
// Placeholders start at $3
Helper functions for the contains operator (~):
import { toSQL, contains, prefix, suffix, escapeLike } from "@filtron/sql";
| Function | Input | Output | Use case |
|---|---|---|---|
contains | "foo" | "%foo%" | Substring match |
prefix | "foo" | "foo%" | Starts with |
suffix | "foo" | "%foo" | Ends with |
escapeLike | "a%b" | "a\\%b" | Escape special chars |
Usage with valueMapper:
const { sql, params } = toSQL(ast, {
valueMapper: contains,
});
// Query "name ~ 'john'" produces params: ["%john%"]
For APIs with repeated filter queries, cache parsed results to avoid redundant parsing:
const cache = new Map<string, SQLResult>();
function getFilterSQL(filter: string): SQLResult | null {
const cached = cache.get(filter);
if (cached) return cached;
const result = parse(filter);
if (!result.success) return null;
const sql = toSQL(result.ast, { parameterStyle: "question" });
cache.set(filter, sql);
return sql;
}
Consider using an LRU cache with a size limit for production:
// https://github.com/isaacs/node-lru-cache
import { LRUCache } from "lru-cache";
const cache = new LRUCache<string, SQLResult>({ max: 1000 });
Caching is effective when:
AND/OR conditions)For simple queries or unique filters, caching overhead is not worthwhile.
Caching at the HTTP level (database query results) is often more effective than caching a parsed Filtron SQLResult. Database queries are typically orders of magnitude slower than processing the Filtron query.
All queries are parameterized to prevent SQL injection:
// User input with SQL injection attempt
const result = parse('name = "admin\' OR \'1\'=\'1"');
const { sql, params } = toSQL(result.ast);
// sql: "(name = $1)"
// params: ["admin' OR '1'='1"] — treated as literal string value
Never interpolate user input directly into SQL. Always use the params array with your database driver's parameterized query support.
MIT
FAQs
Filtron helper: generate safe, parameterized SQL WHERE clauses from filter expressions
We found that @filtron/sql demonstrated a healthy version release cadence and project activity because the last version was released less than 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
The worm-enabled campaign hit @emilgroup and @teale.io, then used an ICP canister to deliver follow-on payloads.

Research
/Security News
Attackers compromised Trivy GitHub Actions by force-updating tags to deliver malware, exposing CI/CD secrets across affected pipelines.

Security News
ENISA’s new package manager advisory outlines the dependency security practices companies will need to demonstrate as the EU’s Cyber Resilience Act begins enforcing software supply chain requirements.