
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
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
The npm package es6-sql receives a total of 2 weekly downloads. As such, es6-sql popularity was classified as not popular.
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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

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