From bd0857f75f293aaacd33e5189906a10977869ce8 Mon Sep 17 00:00:00 2001 From: Brian Carlson Date: Tue, 8 Mar 2011 06:47:09 -0800 Subject: [PATCH] Edited README.md via GitHub --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index abb7978..83b1709 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ #node-postgres Non-blocking PostgreSQL client for node.js + * a pure javascript client and native libpq bindings with _the same api_ * _heavily_ tested * the same suite of 200+ integration tests passed by both javascript & libpq bindings @@ -33,7 +34,7 @@ All examples will work with the pure javascript bindings (currently default) or ### Evented api - var pg = require('pg'); //naive = `var pg = require('pg/native')` + 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);