couchdb-auth-proxy
couchdb-auth-proxy copied to clipboard
An HTTP reverse proxy server for easy Couchdb proxy authentication
Results
2
couchdb-auth-proxy issues
Sort by
recently updated
recently updated
newest added
Hello, nice little project you got there, very useful. I think that on the http-proxy instance should be registered more events, at least the 'error' - as of now, a...
Necessary to catch errors due to connection issue to couchdb instance. Errors can then be caught by something like ``` app.use((err, req, res, next) => { console.error(err.stack); res.status(500).send('Something broke!'); });...