Go to file
2010-10-23 20:26:24 -05:00
lib big refactor, all tests passing 2010-10-23 20:26:24 -05:00
script only list built-in db types 2010-10-17 22:25:05 -05:00
test big refactor, all tests passing 2010-10-23 20:26:24 -05:00
.gitignore ignore project file 2010-10-23 17:08:51 -05:00
README.md updated readme todo 2010-10-23 12:49:23 -05:00
test.js big refactor, all tests passing 2010-10-23 20:26:24 -05:00

#pg.js Async Pure JavaScript PostgreSQL driver for node.js

ALPHA version

Implemented in a fully TDD fashion. Drew major inspiration from postgres-js but it has 0 tests and doesn't seem to be actively developed anymore. I'm aiming for extremely high quality code, but first doing the implementation and only refactoring after tests are in place.

I'm first aiming to support the low level messaging protocol.

Due to the fully async nature of node sockets, the driver is completely non-blocking.

What works?

var client = new Client({
  username: 'brianc',
  database: 'postgres'
});

client.connect();

client.query('select typname, oid from pg_type');

query.on('row', function(row) {
  console.log('type name: ' + row[0] + ' oid: ' + row[1]);      
};

query.on('end') {
  client.end();
};

TODO

  • prepared statements
    • parameters
    • caching
  • portals
  • integration testing
  • notification api
  • setting parameters
  • connection pooling
  • copy data
  • connection pooling