I use the PouchDB-authentication plugin and I love it.
However, I'm a little confused about the signup process and maybe I don't use it the right way. I use it to create new users in my CouchDB database but I don't understand why it is associated with a specific database? Since I create CouchDB user before his specific database, I have to use a dummy database to create the new user:
// Create or get a database on the CouchDB server to further create a new user
var remoteDB = new PouchDB('http://169.254.197.198:5984/dummy');
// Signup to this db in order to create new user in the CouchDB server
remoteDB.signUp(document.register.username.value,
document.register.password1.value).then(function (reponse){
}).then(function (reponse) {
// handle response
}).catch(function (error) {
// handle error
});
Question: Is there a way to create a new users independently of a database?
It's a design flaw in pouchdb-authentication. Technically, your users are defined globally relative to the entire CouchDB server, but pouchdb-authentication tries to make things simpler by attaching itself to a PouchDB object linked to a single CouchDB database.
The easiest thing, if you want to continue using pouchdb-authentication, is yeah, to use a dummy database. Sorry about that; I couldn't come up with a better system. :/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With