2010-10-25 13:14:48 +08:00
#node-postgres
2014-12-20 22:46:09 +08:00
[![Build Status ](https://secure.travis-ci.org/brianc/node-postgres.svg?branch=master )](http://travis-ci.org/brianc/node-postgres)
2016-06-08 05:04:07 +08:00
[![Dependency Status ](https://david-dm.org/brianc/node-postgres.svg )](https://david-dm.org/brianc/node-postgres)
2012-07-12 12:13:15 +08:00
2014-11-20 11:13:26 +08:00
PostgreSQL client for node.js. Pure JavaScript and optional native libpq bindings.
2010-10-25 13:14:48 +08:00
2014-11-20 11:13:26 +08:00
## Install
2010-11-03 14:57:41 +08:00
2014-11-20 11:13:26 +08:00
```sh
$ npm install pg
```
2014-06-12 06:32:13 +08:00
2011-03-08 12:29:52 +08:00
## Examples
2014-03-14 22:57:37 +08:00
### Client pooling
2013-07-04 01:55:35 +08:00
2014-10-10 10:55:27 +08:00
Generally you will access the PostgreSQL server through a pool of clients. A client takes a non-trivial amount of time to establish a new connection. A client also consumes a non-trivial amount of resources on the PostgreSQL server - not something you want to do on every http request. Good news: node-postgres ships with built in client pooling.
2011-03-09 10:32:33 +08:00
2012-07-04 09:05:24 +08:00
```javascript
2016-06-21 22:53:09 +08:00
var Pool = require('pg').Pool;
var config = {
user: 'foo', //env var: PGUSER
database: 'my_db', //env var: PGDATABASE
password: 'secret', //env var: PGPASSWORD
port: 5432 //env var: PGPORT
};
var pool = new Pool(config);
2012-07-04 09:05:24 +08:00
2015-06-14 23:01:11 +08:00
//this initializes a connection pool
2015-04-09 21:43:55 +08:00
//it will keep idle connections open for a (configurable) 30 seconds
2016-03-23 22:28:25 +08:00
//and set a limit of 10 (also configurable)
2016-06-21 22:53:09 +08:00
pool.connect(function(err, client, done) {
2013-07-04 01:55:35 +08:00
if(err) {
2014-05-01 04:09:28 +08:00
return console.error('error fetching client from pool', err);
2013-07-04 01:55:35 +08:00
}
2014-05-01 04:09:28 +08:00
client.query('SELECT $1::int AS number', ['1'], function(err, result) {
2014-03-14 22:57:37 +08:00
//call `done()` to release the client back to the pool
done();
2015-12-01 21:43:19 +08:00
2013-07-04 02:03:46 +08:00
if(err) {
return console.error('error running query', err);
}
2014-05-04 12:16:35 +08:00
console.log(result.rows[0].number);
2014-03-14 22:57:37 +08:00
//output: 1
2013-07-04 02:02:37 +08:00
});
2012-07-04 09:05:24 +08:00
});
```
2011-03-08 12:29:52 +08:00
2016-06-21 22:53:09 +08:00
node-postgres uses [pg-pool ](https://github.com/brianc/node-pg-pool.git ) to manage pooling and only provides a very thin layer on top. It's highly recommend you read the documentation for [pg-pool ](https://github.com/brianc/node-pg-pool.git )
2014-10-10 10:55:27 +08:00
[Check this out for the get up and running quickly example ](https://github.com/brianc/node-postgres/wiki/Example )
2014-11-20 11:13:26 +08:00
### Client instance
2013-07-04 01:55:35 +08:00
2014-11-20 11:13:26 +08:00
Sometimes you may not want to use a pool of connections. You can easily connect a single client to a postgres instance, run some queries, and disconnect.
2011-03-08 12:29:52 +08:00
2012-07-04 09:05:24 +08:00
```javascript
2014-11-20 11:13:26 +08:00
var pg = require('pg');
2014-03-14 22:57:37 +08:00
2014-05-01 04:09:28 +08:00
var conString = "postgres://username:password@localhost/database";
2012-07-04 09:05:24 +08:00
2014-03-14 22:57:37 +08:00
var client = new pg.Client(conString);
client.connect(function(err) {
2013-07-04 01:55:35 +08:00
if(err) {
2014-03-14 22:57:37 +08:00
return console.error('could not connect to postgres', err);
2013-07-04 01:55:35 +08:00
}
2014-03-14 22:57:37 +08:00
client.query('SELECT NOW() AS "theTime"', function(err, result) {
2013-07-04 01:55:35 +08:00
if(err) {
2013-07-04 02:03:46 +08:00
return console.error('error running query', err);
2013-07-04 01:55:35 +08:00
}
2014-03-14 22:57:37 +08:00
console.log(result.rows[0].theTime);
//output: Tue Jan 15 2013 19:12:47 GMT-600 (CST)
client.end();
2013-07-04 01:55:35 +08:00
});
2012-07-04 09:05:24 +08:00
});
2013-07-04 02:02:37 +08:00
2012-07-04 09:05:24 +08:00
```
2011-03-08 12:29:52 +08:00
2014-11-20 11:13:26 +08:00
## [More Documentation](https://github.com/brianc/node-postgres/wiki)
2013-01-16 07:25:54 +08:00
2013-07-04 01:55:35 +08:00
## Native Bindings
2011-08-12 14:16:38 +08:00
2014-11-20 11:13:26 +08:00
To install the [native bindings ](https://github.com/brianc/node-pg-native.git ):
```sh
$ npm install pg pg-native
```
2011-08-12 14:16:38 +08:00
2014-11-20 11:13:26 +08:00
node-postgres contains a pure JavaScript protocol implementation which is quite fast, but you can optionally use native bindings for a 20-30% increase in parsing speed. Both versions are adequate for production workloads.
2011-08-12 14:16:38 +08:00
2014-11-20 11:27:28 +08:00
To use the native bindings, first install [pg-native ](https://github.com/brianc/node-pg-native.git ). Once pg-native is installed, simply replace `require('pg')` with `require('pg').native` .
2014-11-20 11:13:26 +08:00
2016-06-21 22:53:09 +08:00
node-postgres abstracts over the pg-native module to provide exactly the same interface as the pure JavaScript version. Care has been taken to keep the number of api differences between the two modules to a minimum; however, it is recommend you use either the pure JavaScript or native bindings in both development and production and don't mix & match them in the same process - it can get confusing!
2011-08-12 14:16:38 +08:00
2013-07-04 01:55:35 +08:00
## Features
* pure JavaScript client and native libpq bindings share _the same api_
* optional connection pooling
* extensible js< - > postgresql data-type coercion
2011-03-09 10:32:33 +08:00
* supported PostgreSQL features
* parameterized queries
* named statements with query plan caching
2013-01-16 07:25:54 +08:00
* async notifications with `LISTEN/NOTIFY`
* bulk import & export with `COPY TO/COPY FROM`
2011-05-02 06:25:32 +08:00
2013-01-16 07:25:54 +08:00
## Contributing
2014-11-20 11:13:26 +08:00
__We love contributions!__
2013-01-16 07:25:54 +08:00
2014-11-20 11:13:26 +08:00
If you need help getting the tests running locally or have any questions about the code when working on a patch please feel free to email me or gchat me.
2013-01-16 07:25:54 +08:00
I will __happily__ accept your pull request if it:
2014-10-27 14:10:44 +08:00
- __has tests__
2013-01-16 07:25:54 +08:00
- looks reasonable
- does not break backwards compatibility
2013-01-21 22:47:01 +08:00
Information about the testing processes is in the [wiki ](https://github.com/brianc/node-postgres/wiki/Testing ).
2013-01-16 07:25:54 +08:00
2014-11-20 11:13:26 +08:00
Open source belongs to all of us, and we're all invited to participate!
2013-01-16 07:25:54 +08:00
## Support
If at all possible when you open an issue please provide
- version of node
- version of postgres
- smallest possible snippet of code to reproduce the problem
Usually I'll pop the code into the repo as a test. Hopefully the test fails. Then I make the test pass. Then everyone's happy!
2013-03-08 00:14:34 +08:00
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.
2015-12-01 21:43:19 +08:00
I usually tweet about any important status updates or changes to node-postgres on twitter.
2013-07-04 02:02:37 +08:00
Follow me [@briancarlson ](https://twitter.com/briancarlson ) to keep up to date.
2013-03-08 00:14:34 +08:00
2013-01-16 07:25:54 +08:00
## Extras
2016-02-27 03:15:35 +08:00
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.
Entire list can be found on [wiki ](https://github.com/brianc/node-postgres/wiki/Extras )
2013-01-16 07:25:54 +08:00
2010-10-26 15:03:41 +08:00
## License
2016-06-03 23:27:05 +08:00
Copyright (c) 2010-2016 Brian Carlson (brian.m.carlson@gmail.com)
2010-12-03 08:03:32 +08:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.