
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
warning: in development, do not use, but do contribute.
Stop wasting your life with embedded DSLs [1], and just write SQL.
Interpolate scope safely into a SQL statement, using ES6's tagged template strings.
var sql = require('es6-sql');
var table = 'interp_user_table',
user_id = 100;
var query = sql`
SELECT *
FROM ${table}
WHERE
user_id = ${user_id}
OR user_id IN (1,2,3)
OR user_id IN (${sql`SELECT user_id FROM all_users WHERE is_active = True`})`;
Easily combine SQL programmatically.
query = query.column`COUNT(id) as total`;
query = query.join`
LEFT JOIN user_tweets ON tweet_id = user_id
AND tweeted_on > now`;
query = query.and`hello = ${123}`
query = query.or`foo IN (SELECT foo FROM foo)`;
query = query.group`user_id`;
query = query.having`COUNT(tweeted.id) > 2`;
query = query.order`tweeted_on DESC`;
query = query.limit(25);
query = query.offset(125);
function paginate(page, page_size) {
query = query.limit(page).offset(page * page_size);
}
function queryCount(query) {
return sql`SELECT count(*) as count FROM (${query}) a`;
}
function queryUnion(a, b) {
return sql`${a} UNION ${b}`;
}
Reuse utilities at hand like lodash for assembling our queries.
function queryUnionList(query_list) {
return query_list.reduce(queryUnion, query_list);
}
Serialize your SQL statement into a string with values interpolated.
console.log(query.toString());
SELECT *, COUNT(id) AS total
FROM interp_user_table
LEFT JOIN user_tweets
ON ((tweet_id = user_id) AND (tweeted_on > now))
WHERE (((((user_id = $1) OR (user_id IN (1, 2, 3))) OR (user_id IN (SELECT user_id
FROM all_users
WHERE (is_active = TRUE)))) AND (hello = $2)) OR (foo IN (
SELECT foo
FROM foo
)))
GROUP BY user_id
HAVING (COUNT(tweeted_id) > 2)
ORDER BY tweeted_on DESC
LIMIT 25
OFFSET 125
console.log(query.parameters);
[100, 123]
[1]
FAQs
Write SQL with SQL
We found that es6-sql 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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.