Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 582 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 582 Bytes

ESCUELLE (SQL)

This library contains an SQL parser that converts a query string into a structured object (AST).

Coverage Status Build Status

How to use it

  • Add it to you project with :
$ npm install escuelle --save
  • And use it into your code :
var sql_parser = require('escuelle');

console.log(
  sql_parser('SELECT * FROM your_table')
);