JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 47690
  • Score
    100M100P100Q152277F
  • License MIT

Package Exports

  • s3-sync-client

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (s3-sync-client) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

AWS CLI s3 sync for Node.js

AWS CLI s3 sync for Node.js provides a modern client to perform S3 sync operations between a file system and a S3 bucket in the spirit of:
https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3/sync.html

Why should I use this module?

  1. There is no way to achieve S3 sync using the AWS SDK for JavaScript v3 alone.
  2. AWS CLI installation is NOT required.
  3. The package contains no external dependency besides AWS SDK.
  4. The AWS SDK dependency is up-to-date (AWS SDK for JavaScript v3, https://github.com/aws/aws-sdk-js-v3).
  5. The module overcomes a set of common limitations listed at the bottom of this README.

Table of Contents

  1. Getting Started
    1. Install
    2. Code Examples
  2. API Reference
  3. Comparison with other modules

Getting Started

Install

npm install s3-sync-client

Code Examples

Init client

S3SyncClient extends the AWS SDK S3Client class and should be instantiated the same way.

const S3SyncClient = require('s3-sync-client');

const sync = new S3SyncClient({
    region: 'eu-west-3',
    credentials: {
        accessKeyId: process.env.ACCESS_KEY_ID,
        secretAccessKey: process.env.SECRET_ACCESS_KEY,
    },
});

Sync a remote S3 bucket with the local file system

const S3SyncClient = require('s3-sync-client');

const sync = new S3SyncClient({ /* credentials */ });

// aws s3 sync /path/to/local/dir s3://mybucket2
await sync.bucketWithLocal('/path/to/local/dir', 'mybucket2');

// aws s3 sync /path/to/local/dir s3://mybucket2/zzz --delete
await sync.bucketWithLocal('/path/to/local/dir', 'mybucket2/zzz', { del: true });

Sync the local file system with a remote S3 bucket

const S3SyncClient = require('s3-sync-client');

const sync = new S3SyncClient({ /* credentials */ });

// aws s3 sync s3://mybucket /path/to/some/local --delete
await sync.localWithBucket('mybucket', '/path/to/some/local', { del: true });

// aws s3 sync s3://mybucket2 /path/to/local/dir --dryrun
const syncOps = await sync.localWithBucket('mybucket2', '/path/to/local/dir', { dryRun: true });
console.log(syncOps); // log download and delete operations to perform

Additional code examples are available in the test folder.

API Reference

Class: S3SyncClient

new S3SyncClient(configuration)

sync.bucketWithLocal(localDir, bucketPrefix[, options])

  • localDir <string> Local directory
  • bucketPrefix <string> Remote bucket name which may contain a prefix appended with a / separator
  • options <Object>
    • del <boolean> Equivalent to CLI --delete option
    • dryRun <boolean> Equivalent to CLI --dryrun option
    • maxConcurrentTransfers <number> Each upload generates a Promise which is resolved when a local object is written to the S3 bucket. This parameter sets the maximum number of upload promises that might be running concurrently.
  • Returns: <Promise> <Promise> Fulfills with an <Object> of sync operations upon success.

Sync a remote S3 bucket with the local file system.
Similar to AWS CLI aws s3 sync localDir s3://bucketPrefix [options].

sync.localWithBucket(bucketPrefix, localDir[, options])

  • bucketPrefix <string> Remote bucket name which may contain a prefix appended with a / separator
  • localDir <string> Local directory
  • options <Object>
    • del <boolean> Equivalent to CLI --delete option
    • dryRun <boolean> Equivalent to CLI --dryrun option
    • maxConcurrentTransfers <number> Each download generates a Promise which is resolved when a remote object is written to the local file system. This parameter sets the maximum number of download promises that might be running concurrently.
  • Returns: <Promise> Fulfills with an <Object> of sync operations upon success.

Sync the local file system with a remote S3 bucket.
Similar to AWS CLI aws s3 sync s3://bucketPrefix localDir [options].

Comparison with other modules

AWS CLI s3 sync for Node.js has been developed to solve the S3 syncing limitations of the existing GitHub repo and NPM modules.

Most of the existing repo and NPM modules encounter one or more of the following limitations:

  • requires AWS CLI to be installed
  • uses Etag to perform file comparison (Etag should be considered an opaque field, and should not be used)
  • limits S3 bucket object listing to 1000 objects
  • supports syncing bucket with local, but doesn't support syncing local with bucket
  • uses outdated dependencies
  • is unmaintained

The following JavaScript modules suffer at least one of the limitations:

AWS CLI s3 sync for Node.js has its share of limitations too:

  • does not support bucket with bucket sync (yet)
  • does not support multipart transfers
  • supports a limited set of AWS CLI options (--delete and --dryrun)