# gulp-s3 **Repository Path**: mirrors_mathisonian/gulp-s3 ## Basic Information - **Project Name**: gulp-s3 - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # gulp-s3 [![NPM version][npm-image]][npm-url] > s3 plugin for [gulp](https://github.com/wearefractal/gulp) ## Usage First, install `gulp-s3` as a development dependency: ```shell npm install --save-dev gulp-s3 ``` Setup your aws.json file ```javascript { "key": "AKIAI3Z7CUAFHG53DMJA", "secret": "acYxWRu5RRa6CwzQuhdXEfTpbQA+1XQJ7Z1bGTCx", "bucket": "dev.example.com", "region": "eu-west-1" } ``` Then, use it in your `gulpfile.js`: ```javascript var s3 = require("gulp-s3"); aws = JSON.parse(fs.readFileSync('./aws.json')); options = { delay: 1000 } // optional delay each request by x milliseconds gulp.src('./dist/**', {read: false}) .pipe(s3(aws, options)); ``` ## License [MIT License](http://en.wikipedia.org/wiki/MIT_License) [npm-url]: https://npmjs.org/package/gulp-s3 [npm-image]: https://badge.fury.io/js/gulp-s3.png