🚨 Shai-Hulud Strikes Again:More than 500 packages and 700+ versions compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@triptease/sql-template

Package Overview
Dependencies
Maintainers
4
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@triptease/sql-template

latest
Source
npmnpm
Version
0.24.25
Version published
Maintainers
4
Created
Source

Sql Template

This is yet another SQL tagged template for Typescript/Javascript

Why another library?

  • Typescript first
  • Functional/Immutable
  • Super simple implementation (the main SQL function is 3 lines of code)
  • Full escaping of identifiers and values
  • Plugable to any DB (currently only Postgres @triptease\sql-template-postgres )
  • Automatic support for prepareStatement naming (Postgres)

Installation

npm install @triptease/sql-template @triptease/sql-template-postgres

Usage

import {SQL, id} from "@triptease/sql-template";
import {statement} from "@triptease/sql-template-postgres";

client.query(statement(SQL`select * from ${id(table)} where name = ${name}`));

Cheatsheet

Core (@triptease/sql-template)

functionDescription
SQLThe main function to create tagged templates for SQL (DB agnostic)
text (alias raw)Input raw SQL without any escaping (use with care)
id / idsInput dynamic identifiers into SQL (escaped as needed)
value (optional) / values (alias spread)Input one or more values into SQL (escaped as needed)

Postgres (@triptease/sql-template-postgres)

functionDescription
statementConverts DB agnostic SQL template into postgres statement
prepareStatementConverts DB agnostic SQL template into postgres prepare statement
debugQueryUsed to debug a query (use with care)

use with care -> Used incorrectly you can open yourself up to SQL injection

Extending

It is incredibly simple to extend to other DBs, have a look at the postgres implementation.

FAQs

Package last updated on 02 Feb 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