Socket
Socket
Sign inDemoInstall

couchdb-to-s3

Package Overview
Dependencies
74
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    couchdb-to-s3

Copy your CouchDB database files to Amazon's S3 service.


Version published
Weekly downloads
4
increased by300%
Maintainers
1
Install size
5.81 MB
Created
Weekly downloads
 

Readme

Source

couchdb-to-s3

Copy your CouchDB database files to Amazon's S3 service.

npm install couchdb-to-s3

Usage

var copy = require('couchdb-to-S3');

var db = {
    url: "http://localhost:5984",
    name: "the name of your database"
};

var aws = {
    accessKeyId: <aws_access_key_id>,
    secretAccessKey: <aws_secret_access_key>,
    bucket: "your S3 bucket",
};

copy(db, aws, function (err, body) {
    // ...
});

Description

Copies the .couch file of your local database to an S3 bucket.

Uses knox and nano.

For a command-line utility that uses this module, see backup-couchdb-to-s3.

License

BSD.

Keywords

FAQs

Last updated on 13 Jul 2014

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc