From 0f4bbe7efe0eb521451da412e8f58f82668fb69f Mon Sep 17 00:00:00 2001 From: Eddy Espinal Date: Thu, 19 Jul 2012 12:33:02 -0400 Subject: [PATCH 1/2] Using Debug folder instead of default to look for binding --- lib/native/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/native/index.js b/lib/native/index.js index bf2aa0f8a..522f17dd3 100644 --- a/lib/native/index.js +++ b/lib/native/index.js @@ -9,7 +9,10 @@ try{ binding = require(__dirname + '/../../build/Release/binding.node'); } catch(e) { //v0.4.x - binding = require(__dirname + '/../../build/default/binding'); + //binding = require(__dirname + '/../../build/default/binding'); + + //nodejitsu compilation results in Debug folder + binding = require(__dirname + '/../../build/Debug/binding'); } var Connection = binding.Connection; From 14a567525262c7d0fe3a57148cc21e721868fb47 Mon Sep 17 00:00:00 2001 From: Eddy Espinal Date: Mon, 8 Oct 2012 16:12:30 -0400 Subject: [PATCH 2/2] Modifyng to test --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d981f2202..2b7f6ad42 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ Non-blocking PostgreSQL client for node.js. Pure JavaScript and native libpq bindings. Active development, well tested, and production use. +Adding something else + ## Installation npm install pg