esqillel
v1.0.4
Published
esqillel SQL Builder
Downloads
3
Readme
Ryan
Ryan is the easy sql builder. Nothing else.
How to use
- Install Ryan
yarn add -D Ryan
- Import and use
Example
import Ryan from "ryan"
// Note that you must always build the query using BuildQuery()
// Or else it will give you an query object
const query = Ryan.select("user")
.from("table")
.buildQuery()
console.log(query)
// result:
// "SELECT `user` FROM `table`