helpyourneighbour/node_modules/named-placeholders
BibaBot bfd432d094
Some checks are pending
Docker Test / test (push) Waiting to run
Add comprehensive tests for role middleware and fix package dependencies
2026-03-16 20:07:22 +00:00
..
index.js Add comprehensive tests for role middleware and fix package dependencies 2026-03-16 20:07:22 +00:00
LICENSE Add comprehensive tests for role middleware and fix package dependencies 2026-03-16 20:07:22 +00:00
package.json Add comprehensive tests for role middleware and fix package dependencies 2026-03-16 20:07:22 +00:00
README.md Add comprehensive tests for role middleware and fix package dependencies 2026-03-16 20:07:22 +00:00

NPM

CI

named-placeholders

compiles "select foo where foo.id = :bar and foo.baz < :baz" into "select foo where foo.id = ? and foo.baz < ?" + ["bar", "baz"]

usage

npm install named-placeholders

see this mysql2 discussion

var mysql = require('mysql');
var toUnnamed = require('named-placeholders')();

var q = toUnnamed('select 1+:test', { test: 123 });
mysql.createConnection().query(q[0], q[1]);

credits

parser is based on @mscdex code of his excellent node-mariasql library