i'm looking for node modules to connect with my postgresql database.
Also, in order to keep code good enough to understand and maintain, i need something more.
My research gave me a few options:
- https://github.com/brianc/node-sql
- https://github.com/C2FO/patio
- https://github.com/hiddentao/squel
- https://github.com/on-point/thin-orm
My main needs are:
- To be able to either avoid query string concats or load external queries
- Receive or automatically transform the query result into json (so my express controller can answer my angular frontend)
- Avoid as much as possible any performance issue
I'll thank and take a good look on any recommendation, and will update this thread to share my findings.