New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@mojojs/sql

Package Overview
Dependencies
Maintainers
4
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mojojs/sql

SQL generator

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
275
increased by38.89%
Maintainers
4
Weekly downloads
 
Created
Source

Coverage Status npm

Safely generate SQL statements with tagged template literals. Written in TypeScript.

import {sql} from '@mojojs/sql';

// {text: 'SELECT * FROM users WHERE name = $1', values: ['sebastian']}
const {text, values} = sql`SELECT * FROM users WHERE name = ${'sebastian'}`.toQuery();

To prevent SQL injection attacks, all interpolated values become placeholders in the generated query by default. Partial statements can even be used recursively to build more complex queries.

// Use a partial SQL query
const role = 'admin';
const partialQuery = sql`AND role = ${role}`;
const name = 'root';
const {text, values} = sql`SELECT * FROM users WHERE name = ${name} ${partialQuery}`.toQuery();

Make partial statements optional to dynamically generate WHERE clauses.

const partialQuery = foo === true ? sql`AND foo IS NOT NULL` : sql``;
const {text, values} = sql`SELECT * FROM users WHERE name = ${'sebastian'} ${partialQuery}`.toQuery();

And if you need a little more control over the generated SQL query, you can of course also bypass safety features with the tagged template literal sqlUnsafe. But make sure to use whatever escaping functions your database driver supports to escape unsafe values yourself.

import {sql, sqlUnsafe} from '@mojojs/sql';

const role = 'role = ' + escapeLiteral('power user');
const partialQuery = sqlUnsafe`AND ${role}`;
const name = 'root';
const {text, values} = sql`SELECT * FROM users WHERE name = ${name} ${partialQuery}`.toQuery();

Editor Support

Installation

All you need is Node.js 16.0.0 (or newer).

$ npm install @mojojs/sql

Keywords

FAQs

Package last updated on 08 Aug 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc