OliverAndersRWE
OliverAndersRWE
Hi, I have the same problem in a vue application, but using only : ``` var nano = require('nano')({ 'url': 'http://server:5982/' }); nano.auth("user", "pw", function (err, body, headers) { if...
I call push(serverUrl,targetAppPath, function(err, resp) { if (err) { console.log(chalk.red.underline("ERROR")) console.log(chalk.red(JSON.stringify(err))) } else { console.log(chalk.green.bold.underline("SUCCESS")) console.log(resp) } }) where serverurl is like https://userId:[email protected]:443/dbName the error occurs in couchdb-ensure/index.js line 8...
Hi, devDependencies": { ... "couchdb-push": "^3.1.0", ... } I'm using the version above... I switched back to the http connection and the port 5982 and it worked again. I will...