Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

typesql-cli

Package Overview
Dependencies
Maintainers
1
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typesql-cli

Obs.: This is a WIP experimental project.

  • 0.2.0
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Obs.: This is a WIP experimental project.

Typesql: Generate type safe code for mysql database.

Example

Having the following query in select-products.sql file.

SELECT 
  id,
  product_name,
  list_price
FROM products
WHERE discontinued = 0
  AND list_price > :minPrice
  AND list_price  < :maxPrice

TypeSql will generate the types and function in the file select-products.ts. Then you can import the generate code and execute as following:

deno syntax:

Usage

  1. Write your queries in a determined folder, like this:
sqls\
    select-products.sql
    insert-product.sql
    update-product.sql
  1. Then run npx typesql-cli -w -t=deno -d mysql://root:password@localhost/mydb .\sqls to start typesql in watch mode and generate code targeting the deno runtime.

  2. After that you will have one Typescript file for each query file.

sqls\
    select-products.sql
    select-products.ts
    insert-product.sql
    insert-product.ts
    update-product.sql
    update-product.ts
  1. Now you can import and use the generated code
const products = await selectProducts(...

const updateResult = await updateProduct(...

Examples

Order by and limit clauses

FAQs

Package last updated on 05 Sep 2020

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