CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 08 Aug 2025 04:08:31 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100419115212
location: https://web.archive.org/web/20100419115212/https://github.com/ry/node_postgres
server-timing: captures_list;dur=0.488492, exclusion.robots;dur=0.023635, exclusion.robots.policy;dur=0.013711, esindex;dur=0.009727, cdx.remote;dur=6.459948, LoadShardBlock;dur=116.498113, PetaboxLoader3.datanode;dur=55.026871, PetaboxLoader3.resolve;dur=31.479435
x-app-server: wwwb-app200
x-ts: 302
x-tr: 153
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app200; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 08 Aug 2025 04:08:32 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Mon, 19 Apr 2010 11:52:11 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "ca3e25f289a101240de64f7d778aa117"
x-archive-orig-x-runtime: 105ms
x-archive-orig-content-length: 21576
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 19 Apr 2010 11:52:12 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 13 Nov 2009 16:12:43 GMT", ; rel="prev memento"; datetime="Wed, 17 Feb 2010 11:16:03 GMT", ; rel="memento"; datetime="Mon, 19 Apr 2010 11:52:12 GMT", ; rel="next memento"; datetime="Tue, 31 Aug 2010 03:45:22 GMT", ; rel="last memento"; datetime="Sun, 22 Jun 2025 10:47:30 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_15_20100419073103_crawl102-c/51_15_20100419115025_crawl101.arc.gz
server-timing: captures_list;dur=1.143591, exclusion.robots;dur=0.054562, exclusion.robots.policy;dur=0.031620, esindex;dur=0.018029, cdx.remote;dur=21.767374, LoadShardBlock;dur=155.820071, PetaboxLoader3.datanode;dur=184.363184, PetaboxLoader3.resolve;dur=176.334132, load_resource;dur=228.504356
x-app-server: wwwb-app200
x-ts: 200
x-tr: 467
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
ry's node_postgres at master - GitHub
ry / node_postgres
- Source
- Commits
- Network (9)
- Issues (4)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Fri Mar 05 11:47:56 -0800 2010 | Promises are depricated. Use callbacks instead [Devin Torres] |
![]() |
README | Fri Mar 05 14:16:37 -0800 2010 | Add more info to the readme [ry] |
![]() |
binding.cc | Thu Apr 15 11:12:36 -0700 2010 | Fix segfault [ry] |
![]() |
postgres.js | Fri Mar 05 14:05:15 -0800 2010 | Callbacks should give error in first argument ... [ry] |
![]() |
test.js | Fri Apr 09 07:53:32 -0700 2010 | Escape, mapTupleFields - a native string escap... [phoebus] |
![]() |
type-oids.h | Wed Sep 02 06:36:05 -0700 2009 | Can now execute some simple queries. [ry] |
![]() |
wscript | Sat Oct 31 23:50:31 -0700 2009 | Update for new node API [ry] |
README
At the moment this is an experiemental project. Grab the latest node (39e6d95 or better) and do node-waf configure build h2. Getting Started You'll need postgres to run this. Here's the easy way to do this locally: wget https://wwwmaster.postgresql.org/redir/198/h/source/v8.4.2/postgresql-8.4.2.tar.gz tar -zxf postgresql-8.4.2.tar.gz cd postgresql-8.4.2 ./configure --prefix=$HOME/local/postgres-8.4.2 && make && make install cd $HOME/local/postgres-8.4.2 bin/initdb ./data bin/postgres -D ./data You'll probably want to add $HOME/local/postgres-8.4.2/bin to your PATH environment variable. export PATH=$HOME/local/postgres-8.4.2/bin:$PATH And puts few things into the database createdb test echo "CREATE TABLE test (a int, b int); INSERT INTO test VALUES (1, 2);" | psql -d test cd ~/src/node_postgres node-waf configure node-waf build node test.js