s3-diff

1.2.1 • Public • Published

s3-diff

Get the diffs between a local file and a s3-folder.

Installation

npm install s3-diff --save

Usage

var s3diff = require('s3-diff');
s3diff({
  aws: {
    // aws-config
  },
  local: __dirname + '/my-folder-that-I-want-to-sync',
  remote: {
    bucket: 'name-of-s3-bucket',
    prefix: 'name/of/folder/to/sync/on/s3'
  },
  // If recursive flag is set to true, s3-diff will recursively diff child
  // folders as well as the top level folder.
  recursive: false,
  // optionaly set options to the glob-module,
  // such as this
  globOpts: {
    dot: true
  }
}, function (err, data) {
  // data is an object with the following properties:
  //  changed: Files that have been changed - files that exists in both s3 & locally but are out of sync
  //  extra: Files that exists locally but not in s3
  //  missing: Files that exists in s3 but not locally
  //  keep: Files that exists both in s3 & locally and that are equal
});

Readme

Keywords

Package Sidebar

Install

npm i s3-diff

Weekly Downloads

1,104

Version

1.2.1

License

MIT

Unpacked Size

5.89 kB

Total Files

7

Last publish

Collaborators

  • kesla