Examples:
post("/sql", ["select * from test where hello=?", 1])
post(
"/mongo", ["find", {"hello": 1}])
Demo: https://dbify.herokuapp.com/
post("/sql", ["select * from test where hello=?", 1])
post(
"/mongo", ["find", {"hello": 1}])
Demo: https://dbify.herokuapp.com/
send({fn:'insert', args:[{a: 2, hello: 'world'}]}, console.log)
send({fn:'find', args:[{a: 2}]}, console.log)