azure-container-api
Usage
npm install --save azure-container-api
import container from 'azure-container-api';
const storage = {
container: 'test',
account: 'azure-account-name-here',
accessKey: 'azure-storage-access-key-here',
};
var prefix = null;
var nextMarker = null;
var targetLocation = 0;
var continuationToken = nextMarker ? {nextMarker: nextMarker, targetLocation: targetLocation} : null;
const options = {
maxResults: 25,
date: { year: 2013, month: 7, day: 27 },
};
container.getContentFromContainer(storage, prefix, continuationToken, options, function(err, blobs, continuationToken) {
});
See properties reference:
https://msdn.microsoft.com/en-us/library/azure/dd179394.aspx
Options
date
(Optional)