Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
A (bluebird promisified) minimalistic couchdb driver for node.js. (This is a fork of nano-blue with updated dependencies)
A (bluebird promisified) minimalistic couchdb driver for node.js
This is just a fork of nano-blue with updated dependencies
nano-blue2
wraps nano in bluebird-flavored promises.
npm install --save nano-blue2
A rewriting of the first example from the nano
docs:
var nano = require('nano-blue2')('http://localhost:5984');
// specify the database we are going to use
var alice = nano.use('alice');
// clean up a database we created previously
nano.db.destroy('alice')
.then(function() {
// create a new database
return nano.db.create('alice');
}).then(function() {
// insert a document into the database
return alice.insert({ crazy: true }, 'rabbit');
}).spread(function(body, header) {
console.log('you have inserted the rabbit');
console.log(body);
}).catch(function(err) {
console.log(err.message);
});
// you have inserted the rabbit
// { ok: true,
// id: 'rabbit',
// rev: '1-6e4cb465d49c0368ac3946506d26335d' }
Where you would normally use a callback that accepts body
and header
arguments, you should probably use Bluebird's .spread
instead of .then
. If
you just use .then
, the values will be passed as an array, which makes things
not as nice. For example:
// using .spread()
alice.insert({ crazy: true }, 'rabbit')
.spread(function(body, header) {
console.log(body)
console.log(header)
});
// using .then()
alice.insert({ crazy: true }, 'rabbit')
.then(function(res) {
console.log(res[0])
console.log(res[1])
});
See LICENSE
file for details.
nano
itself is licensed under the Apache License, version 2.0
FAQs
A (bluebird promisified) minimalistic couchdb driver for node.js. (This is a fork of nano-blue with updated dependencies)
We found that nano-blue2 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.