Socket
Socket
Sign inDemoInstall

azure-blob-container-download

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

azure-blob-container-download - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

.gitattributes

0

index.js

@@ -0,0 +0,0 @@ #!/usr/bin/env node

2

package.json
{
"name": "azure-blob-container-download",
"description": "Download blobs from an Azure container.",
"version": "0.1.0",
"version": "0.1.1",
"homepage": "https://github.com/DavidAnson/azure-blob-container-download",

@@ -6,0 +6,0 @@ "author": "David Anson (https://dlaa.me/)",

@@ -9,9 +9,9 @@ # azure-blob-container-download

A simple, cross-platform tool to bulk-download blobs from an [Azure storage container](https://azure.microsoft.com/en-us/documentation/services/storage/).
A simple, cross-platform tool to bulk-download blobs from an [Azure storage container](https://docs.microsoft.com/en-us/azure/storage/).
Though limited in scope, it does some things official tools don't:
- [AzCopy](https://azure.microsoft.com/en-us/documentation/articles/storage-use-azcopy/) is not cross-platform
- [Azure CLI](https://azure.microsoft.com/en-us/documentation/articles/storage-azure-cli/) does not bulk-download
- [Azure PowerShell](https://azure.microsoft.com/en-us/documentation/articles/storage-powershell-guide-full/) is not cross-platform
- [AzCopy](https://docs.microsoft.com/en-us/azure/storage/storage-use-azcopy) is not cross-platform
- [Azure CLI](https://docs.microsoft.com/en-us/azure/storage/storage-azure-cli) does not bulk-download
- [Azure PowerShell](https://docs.microsoft.com/en-us/azure/storage/storage-powershell-guide-full) is not cross-platform
- [Azure Portal](https://azure.microsoft.com/en-us/features/azure-portal/) does not bulk-download

@@ -63,6 +63,10 @@

Include [blob snapshots](https://azure.microsoft.com/en-us/documentation/articles/storage-blob-snapshots/):
Include [blob snapshots](https://docs.microsoft.com/en-us/azure/storage/storage-blob-snapshots):
abcd --snapshots
Filter by last modified date of each blob:
abcd --startDate 2016-02-13 --endDate 2016-08-04
Filter by container name and/or blob name using [regular expressions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions):

@@ -72,9 +76,26 @@

Filter by last modified date of each blob:
**Note**: Some regular expression characters require escaping on the command line.
The output from `azure-blob-container-download` shows when this happens.
abcd --startDate 2016-02-13 --endDate 2016-08-04
For example (Windows):
```text
C:\>abcd --containerPattern ^text
Downloading blobs in account from [beginning of time] to [end of time].
Listing containers in account matching /text/...
```
The leading `^` character of the `--containerPattern` has been lost by the shell.
It can be recovered by quoting the parameter:
```text
C:\>abcd --containerPattern "^text"
Downloading blobs in account from [beginning of time] to [end of time].
Listing containers in account matching /^text/...
```
## History
- 0.1.0 - Initial release
- 0.1.1 - Patch for OS X

@@ -81,0 +102,0 @@ [npm-image]: https://img.shields.io/npm/v/azure-blob-container-download.svg

Sorry, the diff of this file is not supported yet

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