Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

s3-asset-uploader

Package Overview
Dependencies
Maintainers
6
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

s3-asset-uploader

AWS S3 Asset Uploader

  • 2.4.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
6
Created
Source

AWS S3 asset uploader

Greenkeeper badge

Synchronizes a local directory with an Amazon S3 bucket

Options

KeyTypeDescription
path (REQUIRED)stringthe base path to synchronize with S3
ignorePathsArray.<(RegExp|string)>skip these paths when gathering files
digestFileKeyAWS.S3.ObjectKeythe destination key of the generated digest file
prefixstringprepended to file names (but not digestFileKey!) when uploaded
headersS3UploadHeadersextra params used by AWS.S3 upload method
gzipHeadersS3UploadHeadersextra params used by AWS.S3 upload method for GZIP files
gzipHashedFileKeyRegexpRegExpgzip the hashed files that match this pattern
noUploadbooleandon't upload anything, just generate a digest mapping
noUploadDigestFilebooleandon't upload the digest mapping file
noUploadOriginalFilesbooleandon't upload the original (unhashed) files
noUploadHashedFilesbooleandon't upload the hashed files
forceUploadbooleanskip shouldUpload etag modified lookup for keys before uploading; does not override noUpload* options
hashedOriginalFileRegexp`RegExpboolean`
includePseudoUnhashedOriginalFilesInDigestbooleanadd pseudo-entries to the digest for the "unhashed" variant of hashed original files

Example usage

const { S3Sync } = require('s3-asset-uploader')

const config =  {
  key: '<aws-access-key-id>',
  secret: '<aws-secret-access-key>',
  bucket: '<aws-s3-bucket-name>'
}
const options = {
  path: './public',
  ignorePaths: ['js/vendor', '.DS_Store'],
  prefix: 'assets',
  digestFileKey: 'config/asset-map.json'
}

const s3SyncUploader = new S3Sync(config, options)
s3SyncUploader.run()
.then(digest => {
  console.log('S3 Sync complete! Digest: ', digest)
})
.catch(err => {
  console.error('S3 Sync failed: ', err)
})

Debug logging

To see what's going on under the hood, add s3-asset-uploader to your DEBUG environment variable:

DEBUG=s3-asset-uploader

For more information on configuring the debug logger, see: https://github.com/visionmedia/debug#readme

Keywords

FAQs

Package last updated on 20 May 2020

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