You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-7Lines changed: 17 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,14 @@ PostgreSQL client for node.js. Pure JavaScript and native libpq bindings.
7
7
## Installation
8
8
9
9
npm install pg
10
-
10
+
11
+
### Windows
12
+
13
+
1. Install Visual Studio C++ (successfully built with Express 2010). Express is free.
14
+
2. Add your Postgre Installation's `bin` folder to the system path (i.e. `C:\Program Files\PostgreSQL\9.3\bin`).
15
+
3. Make sure that both `libpq.dll` and `pg_config.exe` are in that folder.
16
+
4.`npm install pg`
17
+
11
18
## Examples
12
19
13
20
### Client pooling
@@ -125,12 +132,15 @@ Follow me [@briancarlson](https://twitter.com/briancarlson) to keep up to date.
125
132
126
133
node-postgres is by design _low level_ with the bare minimum of abstraction. These might help out:
127
134
128
-
-https://github.com/brianc/node-pg-query-stream
129
-
-https://github.com/brianc/node-pg-cursor
130
-
-https://github.com/brianc/node-pg-copy-streams
131
-
-https://github.com/grncdr/node-any-db
132
-
-https://github.com/brianc/node-sql
133
-
-https://github.com/CSNW/sql-bricks
135
+
-[brianc/node-pg-query-stream](https://github.com/brianc/node-pg-query-stream) - Query results from node-postgres as a readable (object) stream
136
+
-[brianc/node-pg-cursor](https://github.com/brianc/node-pg-cursor) - Query cursor extension for node-postgres
137
+
-[brianc/node-pg-copy-streams](https://github.com/brianc/node-pg-copy-streams) - COPY FROM / COPY TO for node-postgres. Stream from one database to another, and stuff.
138
+
-[brianc/node-postgres-pure](https://github.com/brianc/node-postgres-pure) - node-postgres without any of the C/C++ stuff
139
+
-[brianc/node-pg-types](https://github.com/brianc/node-pg-types) - Type parsing for node-postgres
140
+
-[grncdr/node-any-db](https://github.com/grncdr/node-any-db) - Thin and less-opinionated database abstraction layer for node.
141
+
-[brianc/node-sql](https://github.com/brianc/node-sql) - SQL generation for node.js
142
+
-[hiddentao/suqel](https://hiddentao.github.io/squel/) - SQL query string builder for Javascript
0 commit comments