gulp-azure-storage
Gulp plugin to download and upload files to/from the Azure blob storage.
Installation
npm install gulp-azure-storage
Usage
Upload
Simply pipe in a gulp stream:
gulp.task(['default'], function() {
return gulp.src('bin/**')
.pipe(azure.upload({
account: ACCOUNT_NAME,
key: ACCOUNT_KEY,
container: CONTAINER_NAME
}));
});
Download
Simply use it as a gulp source stream:
var gulp = require('gulp');
var azure = require('gulp-azure-storage');
gulp.task(['default'], function() {
return azure.download({
account: ACCOUNT_NAME,
key: ACCOUNT_KEY,
container: CONTAINER_NAME
}).pipe(gulp.dest('out'));
});
CLI
There's a script included with the module that allows you to upload some files to an azure container:
$ upload-to-azure \
--account ACCOUNT_NAME \
--key ACCOUNT_KEY \
--container CONTAINER_NAME \
file1.txt \
file2.txt
Options
Mandatory:
Optional:
key
- container will be accessed anonymously, if missingprefix
- blob name prefixquiet
- shhhbuffer
- boolean
for whether to buffer the blobs or stream them (only for download)