nodejs 安装 postgresql module
时间:2014-02-09 16:23:31
收藏:0
阅读:496
# npm -gd install node-gyp
# export PATH=$PATH:/usr/local/pgsql/bin
# npm -gd install pg
for test:
# export NODE_PATH=/usr/local/nodejs/lib/node_modules
# vi sender.js
var pg = require(‘pg‘);
console.log(‘pg has installed successfully‘);
# node sender
if no error, means it works ok.
原文:http://www.cnblogs.com/kylindai/p/3541179.html
评论(0)