Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

pgTyped - Typesafe SQL in TypeScript

License

NotificationsYou must be signed in to change notification settings

adelsz/pgtyped

Repository files navigation

VersionActions StatusJoin the chat at https://gitter.im/pgtyped/community

PgTyped makes it possible to use raw SQL in TypeScript with guaranteed type-safety.
No need to map or translate your DB schema to TypeScript, PgTyped automatically generates types and interfaces for your SQL queries by using your running Postgres database as the source of type information.


Features:

  1. Automatically generates TS types for parameters/results of SQL queries of any complexity.
  2. Supports extracting and typing queries from both SQL and TS files.
  3. Generate query types as you write them, using watch mode.
  4. Useful parameter interpolation helpers for arrays and objects.
  5. No need to define your DB schema in TypeScript, your running DB is the live source of type data.
  6. Prevents SQL injections by not doing explicit parameter substitution. Instead, queries and parameters are sent separately to the DB driver, allowing parameter substitution to be safely done by the PostgreSQL server.
  7. Native ESM support. Runtime dependencies are also provided as CommonJS.

Documentation

Visit our documentation page athttps://pgtyped.dev/

Getting started

  1. npm install -D @pgtyped/cli typescript (typescript is a required peer dependency for pgtyped)
  2. npm install @pgtyped/runtime (@pgtyped/runtime is the only required runtime dependency of pgtyped)
  3. Create a PgTypedconfig.json file.
  4. Runnpx pgtyped -w -c config.json to start PgTyped in watch mode.

More info on getting started can be found in theGetting Started page.You can also refer to theexample app for a preconfigured example.

Example

Lets save some queries inbooks.sql:

/* @name FindBookById*/SELECT*FROM booksWHERE id= :bookId;

PgTyped parses the SQL file, extracting all queries and generating strictly typed TS queries inbooks.queries.ts:

/** Types generated for queries found in "books.sql" *///.../** 'FindBookById' parameters type */exportinterfaceIFindBookByIdParams{bookId:number|null;}/** 'FindBookById' return type */exportinterfaceIFindBookByIdResult{id:number;rank:number|null;name:string|null;author_id:number|null;}/** * Query generated from SQL: * SELECT * FROM books WHERE id = :bookId */exportconstfindBookById=newPreparedQuery<IFindBookByIdParams,IFindBookByIdResult>(...);

QueryfindBookById is now statically typed, with types inferred from the PostgreSQL schema.
This generated query can be imported and executed as follows:

import{Client}from'pg';import{findBookById}from'./books.queries';exportconstclient=newClient({host:'localhost',user:'test',password:'example',database:'test',});asyncfunctionmain(){awaitclient.connect();constbooks=awaitfindBookById.run({bookId:5,},client,);console.log(`Book name:${books[0].name}`);awaitclient.end();}main();

Resources

  1. Configuring pgTyped
  2. Writing queries in SQL files
  3. Advanced queries and parameter expansions in SQL files
  4. Writing queries in TS files
  5. Advanced queries and parameter expansions in TS files

Project state:

This project is being actively developed and its APIs might change.All issue reports, feature requests and PRs appreciated.

License

MIT

Copyright (c) 2019-present, Adel Salakh

About

pgTyped - Typesafe SQL in TypeScript

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

  •  

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp