![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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 257 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.