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-push
Advanced tools
Deploy CouchDB documents from directory, JSON or CommonJS module. Via API or command line client.
push(db, source[, options], callback)
db
- URL to a CouchDB database. Auth URLs are OK. See nanos configuration, as this argument is directly passed to nano. As of v1.5.0 a nano object is supported, too.source
- Can be an object, a Couchapp Directory Tree, JSON file or CommonJS/Node module. Please see couchdb-compile for in depth information about source handling.options.index
- When set to true
, folders are searched for index.js
, which, if present, is treated as CommonJS module. Default is false
.options.multipart
- if set to true
, attachments are saved via multipart api.options.watch
- if set to true
, watch source
and push on file changes.callback
- called when done with two arguments: error
and response
.var push = require('couchdb-push');
push('http://localhost:5984/my-app', 'project/couchdb', function(err, resp) {
// { ok: true }
});
couchdb-push DB [SOURCE] [OPTIONS]
When SOURCE
is omitted, the current directory will be used.
OPTIONS
can be --index
, --multipart
or --watch
, see above.
couchdb-push http://localhost:5984/my-app project/couchdb --watch
npm test
(c) 2014-2018 Johannes J. Schmidt, TF
Apache 2.0 License
FAQs
Deploy CouchDB documents from directory, JSON or module.
The npm package couchdb-push receives a total of 298 weekly downloads. As such, couchdb-push popularity was classified as not popular.
We found that couchdb-push 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
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.