
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
escape-sql-string
Advanced tools
Simple SQL string escape.
import escapeString from 'escape-sql-string';
const sqlString = "Sup'er"
console.log(escapeString(sqlString)) // => Sup''er
npm install escape-sql-string
Original implementation from sql-escape-string with the added typescript support
Escapes the given string to protect against SQL injection attacks.
By default, it assumes that backslashes are not supported as they are not part of the standard SQL spec. Quoting from the SQLite website:
C-style escapes using the backslash character are not supported because they are not standard SQL.
This means three things:
"
are not escaped by default''
instead of \'
'backslash: \\'
.It is recommended to set the backslashSupported
option true
if your SQL
engine supports it. In that case backslash sequences are escaped and single
and double quotes are escaped via a backslash, i.e. '\''
.
Parameters
value
String the original string to be used in a SQL queryoptions
Object opts
options.backslashSupported
Boolean? if true
backslashes are supported (optional, default false
)opts
Returns String the original string escaped wrapped in single quotes, i.e. 'mystring'
MIT
FAQs
Simple SQL string escape.
We found that escape-sql-string 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.