npm.io
0.0.2 • Published 7 years ago

typescript-sql

Licence
MIT
Version
0.0.2
Deps
0
Size
243 kB
Vulns
0
Weekly
0

Work in progress, do not rely on this code

SQL-like language with JSON types for frontend application

Installation

$ npm install typescript-sql

Usage

import * as sql from 'typescript-sql';
const ast = sql.parse('select c01, c02, co3 from t01 join t02;');
// => [{"tag":"select","columns": [...],"from":[...],"where":null,"group_by":null,"having":null}]