Skip to content

Commit 1cf2170

Browse files
committed
Merge pull request brianc#899 from jray/pg-gen-readme-update
readme entry for pg-gen
2 parents 913c9d3 + 17e3534 commit 1cf2170

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pg.connect(conString, function(err, client, done) {
3232
client.query('SELECT $1::int AS number', ['1'], function(err, result) {
3333
//call `done()` to release the client back to the pool
3434
done();
35-
35+
3636
if(err) {
3737
return console.error('error running query', err);
3838
}
@@ -124,7 +124,7 @@ Usually I'll pop the code into the repo as a test. Hopefully the test fails. T
124124

125125
If you need help or run into _any_ issues getting node-postgres to work on your system please report a bug or contact me directly. I am usually available via google-talk at my github account public email address.
126126

127-
I usually tweet about any important status updates or changes to node-postgres on twitter.
127+
I usually tweet about any important status updates or changes to node-postgres on twitter.
128128
Follow me [@briancarlson](https://twitter.com/briancarlson) to keep up to date.
129129

130130

@@ -150,6 +150,7 @@ node-postgres is by design pretty light on abstractions. These are some handy m
150150
- [pg-then](https://github.com/coderhaoxin/pg-then) A tiny wrapper of `pg` for promise api.
151151
- [acarl/pg-restify](https://github.com/acarl/pg-restify) - Creates a generic REST API for a postgres database using restify.
152152
- [XeCycle/pg-template-tag](https://github.com/XeCycle/pg-template-tag) - Write queries with ES6 tagged template literals, a "poor man's query builder".
153+
- [jray/pg-gen](https://github.com/jray/pg-gen) - Use ES6 Generators to paginate through large Postgres result sets
153154

154155
## License
155156

0 commit comments

Comments
 (0)