让CouchDB与node.js一起使用

时间:2011-09-05 20:02:36

标签: node.js couchdb nodester

我正在nodester使用iriscouch。我已经安装了couchdb-api包。这是我的代码:

console.log("Running");
//Appears in the logs

var dbServer = require("couchdb-api").srv('eric-wieser.iriscouch.com');
console.log(dbServer);
//Appears in the logs

dbServer.info(function (err, response) {
    console.log("Info!");

    //Never executed. Logs show:
    //Error: ECONNREFUSED, Could not contact DNS servers
    //    at IOWatcher.callback (dns.js:74:15)
});

为什么这不起作用?试图告诉我的错误是什么?

1 个答案:

答案 0 :(得分:3)

无法帮助您使用nodeter,没有使用它的经验。然而,这似乎表明您无法连接到iriscouch,这可能意味着您需要提供完整的URL?代码是否适用于本地计算机?

如果您有兴趣,我昨天为couchdb / node初学者写了一篇博客:http://writings.nunojob.com/2011/09/getting-started-with-nodejs-and-couchdb.html