Socket
Socket
Sign inDemoInstall

@enotes/gulp-s3

Package Overview
Dependencies
4
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@enotes/gulp-s3


Version published
Weekly downloads
0
Maintainers
1
Install size
2.39 MB
Created
Weekly downloads
 

Readme

Source

@enotes/gulp-s3

s3 plugin for gulp

Usage

First, install @enotes/gulp-s3 as a development dependency:

npm i --save-dev git+ssh://git@github.com:enotes/gulp-s3.git#v0.4.2

Setup your aws.json file

{
  "key": "AKIAI3Z7CUAFHG53DMJA",
  "secret": "acYxWRu5RRa6CwzQuhdXEfTpbQA+1XQJ7Z1bGTCx",
  "bucket": "dev.example.com",
  "region": "eu-west-1"
}

Then, use it in your gulpfile.js:

const s3 = require("@enotes/gulp-s3");

aws = JSON.parse(fs.readFileSync('./aws.json'));
gulp.src("./dist/**")
    .pipe(s3(aws));

API

options.headers

Type: Array
Default: []

Headers to set to each file uploaded to S3

const options = { headers: {"Cache-Control": "max-age=315360000, no-transform, public"} }
gulp.src("./dist/**", {read: false})
    .pipe(s3(aws, options));
options.gzippedOnly

Type: Boolean
Default: false

Only upload files with .gz extension, additionally it will remove the .gz suffix on destination filename and set appropriate Content-Type and Content-Encoding headers.

const gulp = require("gulp");
const s3 = require("@enotes/gulp-s3");
const gzip = require("gulp-gzip");
const options = { gzippedOnly: true };

gulp.src("./dist/**")
    .pipe(gzip())
    .pipe(s3(aws, options));

});
options.maxRetries

Type: Number
Default: [3][Intimidate]

The number of times to retry before failing.

const gulp = require("gulp");
const s3 = require("@enotes/gulp-s3");
const options = { maxRetries: 5 };

gulp.src("./dist/**")
    .pipe(s3(aws, options));

License

MIT License [Intimidate]: https://github.com/jergason/intimidate#api

Keywords

FAQs

Last updated on 19 Apr 2017

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc