From 187063fae11b670b07b9eaaddfac59195d2e21b2 Mon Sep 17 00:00:00 2001 From: Vitaly Tomilov Date: Tue, 10 Mar 2015 15:02:07 +0000 Subject: [PATCH 1/2] Update README.md Added reference to vitaly-t/pg-promise in chapter Extras. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7b3d4263..a724c1d9 100644 --- a/README.md +++ b/README.md @@ -129,6 +129,7 @@ Follow me [@briancarlson](https://twitter.com/briancarlson) to keep up to date. node-postgres is by design pretty light on abstractions. These are some handy modules we've been using over the years to complete the picture: +- [vitaly-t/pg-promise](https://github.com/vitaly-t/pg-promise) - Use node-postgres entirely via [Promise](https://github.com/then/promise). - [brianc/node-pg-native](https://github.com/brianc/node-pg-native) - Simple interface abstraction on top of [libpq](https://github.com/brianc/node-libpq) - [brianc/node-pg-query-stream](https://github.com/brianc/node-pg-query-stream) - Query results from node-postgres as a readable (object) stream - [brianc/node-pg-cursor](https://github.com/brianc/node-pg-cursor) - Query cursor extension for node-postgres From 50bb3ab3cc0d56689aa81997badd85c12916c95e Mon Sep 17 00:00:00 2001 From: Vitaly Tomilov Date: Tue, 10 Mar 2015 15:55:58 +0000 Subject: [PATCH 2/2] Update README.md Moved the reference to vitaly-t/pg-promise to the bottom of the list. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a724c1d9..3c676413 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,6 @@ Follow me [@briancarlson](https://twitter.com/briancarlson) to keep up to date. node-postgres is by design pretty light on abstractions. These are some handy modules we've been using over the years to complete the picture: -- [vitaly-t/pg-promise](https://github.com/vitaly-t/pg-promise) - Use node-postgres entirely via [Promise](https://github.com/then/promise). - [brianc/node-pg-native](https://github.com/brianc/node-pg-native) - Simple interface abstraction on top of [libpq](https://github.com/brianc/node-libpq) - [brianc/node-pg-query-stream](https://github.com/brianc/node-pg-query-stream) - Query results from node-postgres as a readable (object) stream - [brianc/node-pg-cursor](https://github.com/brianc/node-pg-cursor) - Query cursor extension for node-postgres @@ -144,6 +143,7 @@ node-postgres is by design pretty light on abstractions. These are some handy m - [datalanche/node-pg-format](https://github.com/datalanche/node-pg-format) - Safely and easily create dynamic SQL queries with this Node implementation of [PostgreSQL format()](http://www.postgresql.org/docs/9.3/static/functions-string.html#FUNCTIONS-STRING-FORMAT). - [iceddev/pg-transact](https://github.com/iceddev/pg-transact) - A nicer API on node-postgres transactions - [sehrope/node-pg-db](https://github.com/sehrope/node-pg-db) - Simpler interface, named parameter support, transaction management and event hooks. +- [vitaly-t/pg-promise](https://github.com/vitaly-t/pg-promise) - Use node-postgres entirely via [Promise](https://github.com/then/promise). ## License