where-parser

1.0.0 • Public • Published

where-parser.js

An NPM for parsing SQL where clauses

Usage

First include the module:

var WhereParser = require('./where-parser');

then, instantiate the object:

var parser = new WhereParser();

now you can issue queries:

parse.parse(myWhereClause)

and you'll get back a tree of objects where each node is one of:

{
    type: 'expression',
    key: '<key>',
    operator: <operator>,
    value: <value>
}    


{
    type: 'conjunction',
    value: <value>
}    

[]

Testing

Run the tests at the project root with:

mocha

Enjoy,

-Abbey Hawk Sparrow

Dependents (2)

Package Sidebar

Install

npm i where-parser

Weekly Downloads

2

Version

1.0.0

License

MIT

Unpacked Size

31.7 kB

Total Files

14

Last publish

Collaborators

  • khrome