node-postgres/README.md

158 lines
5.7 KiB
Markdown
Raw Normal View History

2010-10-25 13:14:48 +08:00
#node-postgres
2012-07-12 12:13:15 +08:00
[![Build Status](https://secure.travis-ci.org/brianc/node-postgres.png)](http://travis-ci.org/brianc/node-postgres)
PostgreSQL client for node.js. Pure JavaScript and native libpq bindings.
2010-10-25 13:14:48 +08:00
2010-12-15 09:37:09 +08:00
## Installation
2010-11-03 14:57:41 +08:00
npm install pg
2011-03-08 12:29:52 +08:00
## Examples
### Callbacks
2011-03-09 10:32:33 +08:00
```javascript
var pg = require('pg');
//or native libpq bindings
//var pg = require('pg').native
var conString = "tcp://postgres:1234@localhost/postgres";
//note: error handling omitted
var client = new pg.Client(conString);
client.connect(function(err) {
2013-01-17 00:00:48 +08:00
client.query('SELECT NOW() AS "theTime"', function(err, result) {
console.log(result.rows[0].theTime);
//output: Tue Jan 15 2013 19:12:47 GMT-600 (CST)
})
});
```
2011-03-08 12:29:52 +08:00
### Events
2011-03-08 12:29:52 +08:00
```javascript
var pg = require('pg'); //native libpq bindings = `var pg = require('pg').native`
var conString = "tcp://postgres:1234@localhost/postgres";
var client = new pg.Client(conString);
client.connect();
//queries are queued and executed one after another once the connection becomes available
client.query("CREATE TEMP TABLE beatles(name varchar(10), height integer, birthday timestamptz)");
client.query("INSERT INTO beatles(name, height, birthday) values($1, $2, $3)", ['John', 68, new Date(1944, 10, 13)]);
var query = client.query("SELECT * FROM beatles WHERE name = $1", ['John']);
//can stream row results back 1 at a time
query.on('row', function(row) {
console.log(row);
console.log("Beatle name: %s", row.name); //Beatle name: John
console.log("Beatle birth year: %d", row.birthday.getYear()); //dates are returned as javascript dates
console.log("Beatle height: %d' %d\"", Math.floor(row.height/12), row.height%12); //integers are returned as javascript ints
});
//fired after last row is emitted
query.on('end', function() {
client.end();
});
```
2011-03-08 12:29:52 +08:00
2011-08-12 14:16:38 +08:00
### Example notes
node-postgres supports both an 'event emitter' style API and a 'callback' style. The callback style is more concise and generally preferred, but the evented API can come in handy when you want to handle row events as they come in.
They can be mixed and matched. The only events which do __not__ fire when callbacks are supplied are the `error` events, as they are to be handled within the callback function.
2011-08-12 14:16:38 +08:00
All examples will work with the pure javascript bindings or the libpq native (c/c++) bindings
2011-08-12 14:16:38 +08:00
To use native libpq bindings replace `require('pg')` with `require('pg').native`.
The two share the same interface so __no other code changes should be required__. If you find yourself having to change code other than the require statement when switching from `pg` to `pg.native`, please report an issue.
### Features
2011-03-09 10:32:33 +08:00
2011-08-12 14:16:38 +08:00
* pure javascript client and native libpq bindings share _the same api_
2011-03-09 10:32:33 +08:00
* row-by-row result streaming
* responsive project maintainer
* supported PostgreSQL features
* parameterized queries
* named statements with query plan caching
* async notifications with `LISTEN/NOTIFY`
* bulk import & export with `COPY TO/COPY FROM`
* extensible js<->postgresql data-type coercion
2010-12-20 04:22:56 +08:00
2011-03-08 12:03:11 +08:00
## Documentation
2011-08-12 14:16:38 +08:00
Documentation is a work in progress primarily taking place on the github WIKI
2010-10-26 14:58:42 +08:00
2011-04-06 06:52:33 +08:00
### [Documentation](https://github.com/brianc/node-postgres/wiki)
2010-10-29 11:27:50 +08:00
2010-12-20 05:25:05 +08:00
### __PLEASE__ check out the WIKI
2010-10-26 14:58:42 +08:00
2011-08-12 14:16:38 +08:00
If you have a question, post it to the FAQ section of the WIKI so everyone can read the answer
2011-05-02 06:25:32 +08:00
## Production Use
* [yammer.com](http://www.yammer.com)
2011-05-02 06:25:32 +08:00
* [bayt.com](http://bayt.com)
* [bitfloor.com](https://bitfloor.com)
* [Vendly](http://www.vend.ly)
* [SaferAging](http://www.saferaging.com)
2011-05-02 06:25:32 +08:00
_if you use node-postgres in production and would like your site listed here, fork & add it_
2011-01-11 06:31:01 +08:00
## Help
2011-03-08 12:03:11 +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.
2011-01-11 06:31:01 +08:00
## Contributing
__I love contributions.__
You are welcome contribute via pull requests. If you need help getting the tests running locally feel free to email me or gchat me.
I will __happily__ accept your pull request if it:
- _has tests_
- looks reasonable
- does not break backwards compatibility
If you need help or have questions about constructing a pull request I'll be glad to help out as well.
## 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!
## Extras
2013-01-16 07:29:04 +08:00
node-postgres is by design _low level_ with the bare minimum of abstraction. These might help out:
- https://github.com/grncdr/node-any-db
- https://github.com/brianc/node-sql
2010-10-26 15:03:41 +08:00
## License
Copyright (c) 2010 Brian Carlson (brian.m.carlson@gmail.com)
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.