Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
couchdb-audit
Advanced tools
An npm and Kanso module for auditing changes to couchdb documents.
npm install couchdb-audit
var audit = require('couchdb-audit').withNano(db, dbName, designName, user)
db
: a Nano moduledbName
: the name of the database to usedesignName
: the name of the design document to useuser
: a String or callback which fetches the usernameYou can also optionally pass in a separate db name for storing and retrieving audit documents.
var audit = require('couchdb-audit').withNano(db, dbName, auditDbName, designName, user)
var audit = require('couchdb-audit').withFelix(db, user)
db
: a Felix CouchDB moduleuser
: a String or callback which fetches the usernameYou can also optionally pass in a separate db name for storing and retrieving audit documents.
var audit = require('couchdb-audit').withFelix(db, auditDb, user)
Include "couchdb-audit": null
in your kanso.json.
var audit = require('couchdb-audit/kanso').withKanso(db)
Where db
is a Kanso DB module.
You can also optionally pass in a separate db name for storing and retrieving audit documents.
var audit = require('couchdb-audit/kanso').withKanso(db, auditDb)
Then call saveDoc, bulkSave, removeDoc, get, or log.
This package is in its infancy, use with caution.
kanso publish
npm publish
grunt test
for the Node implementation. Deploy to kanso to run the kanso tests.
Builds brought to you courtesy of Travis CI.
FAQs
An npm and Kanso module for auditing changes to CouchDB documents
We found that couchdb-audit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.