Socket
Socket
Sign inDemoInstall

couch-push

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

couch-push

Deploy CouchDB documents from directory, JSON or module.


Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

couch-push

Deploy CouchDB documents from directory, JSON or module.
Via API or command line client.

Build
Status

var push = require('couch-push');

push('http://localhost:5984/my-app', 'path/to/couch/app', function(err, resp) {
  // { ok: true }
});

Usage

push(url, source, [options], callback)

url

URL to a CouchDB database. Auth URLs are OK. See nanos configuration, as this argument is directly passed to nano.

source

Can be a Couchapp Directory Tree, JSON file or CommonJS/Node module. Please see couchdb-compile for in depth information about source handling.

options

When options.multipart is true, attachments are saved via multipart api.

callback

callback is called with two arguments: error and response.

CLI

npm install -g couch-push

Give it a database and a directory:

couch-push http://localhost:5984/my-app /path/to/my/couch/app

When omitted, the current directory will be used.

Testing

Run the testsuite with

npm test

(c) 2014 Johannes J. Schmidt, TF
MIT License

Keywords

FAQs

Package last updated on 08 Jun 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc