
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
couchdbjs is node.js client for couchdb.
$ npm install couchdbjs --save
const Couchdbjs = require('couchdbjs');
const db = new Couchdbjs(dbname, options);
Note : Here DB is the object of the class couchdbjs.
Here options
is an optional javascript object containing the configuration.
This is the default configuration.
{
protocol : 'http:',
hostname: 'localhost',
port: 5984
}
dbname
is the name of the database.
Couchdbjs.getNewId(options, cb);
Here options
is optional configuration object.
This is the default configuration.
{
protocol : 'http:',
hostname : 'localhost',
port: 5984
count : 1
}
cb
is reqired callback function with two parameters err
and data
.
To avoid writing configurations for protocol, hostname, etc. again the function getConfig
can be called on existing database object.
db.getConfig({count : 1});
returns
{
protocol : 'http:',
hostname : 'localhost',
port: 5984
count : 1
}
Complete Example :
Couchdbjs.getNewId(db.getConfig({count : 1}, function(err, data) {
if (err) console.error(err);
else console.log(data[0]); // data is array of uuids
}));
FAQs
A node client for couchdb.
The npm package couchdbjs receives a total of 0 weekly downloads. As such, couchdbjs popularity was classified as not popular.
We found that couchdbjs 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.